题解列表
蓝桥杯算法提高VIP-解二元一次方程组(C++)直接法
摘要:
#include
#include
#include
#include
#include
#include
#includ……
编写题解 1171: 蟠桃记
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; while(cin>>n){ ……
编写题解 1172: 计算两点间的距离
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<math.h>#include <iomanip>using namespace std;int main(){ ……
编写题解 1182: 人民币问题
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<math.h>#include <iomanip>#define PI 3.1415using namespace ……
编写题解 2015: 自动晾衣机
摘要:解题思路:注意事项:参考代码:l=int(input())
while True:
try:
ls=list(map(int,input().split()))
……
编写题解 1183: 人见人爱A+B
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; int a,b,c,d……
编写题解 1184: 众数问题
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[1000]; int n; cin>>n……
编写题解 1202: 多输入输出练习1
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; int max = 0; while(……