题解列表
二级C语言-计负均正
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,s;double t,t1;int main(){ for(……
[编程入门]打印图案
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<fstream>#include<algorithm>using namespace std;int main(){……
自定义函数处理最大公约数与最小公倍数
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long n,m;int main(){ cin>>n>>m; f……
结构体-学生成绩录入2
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> struct Ymd{ char xh[50]; char name[50]; int a[3……
蓝桥杯算法训练VIP-整除问题 题解(c++简单暴力)
摘要:解题思路:直接暴力解决就欧了。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c; int main(){ scanf("……
蓝桥杯算法训练VIP-整除问题 题解(c++简单暴力)
摘要:解题思路:直接暴力解决就欧了。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c; int main(){scanf("%……
蓝桥杯算法训练VIP-整数平均值
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int n,a,t;int main(){ cin>>n; for(int i=0……
蓝桥杯算法训练VIP-链表数据求和操作 题解(c++懵逼题目)
摘要:解题思路:题目其实看得半懂半蒙!呵呵!我才不管那么多,直接用结构体完事!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;struct lb……
蓝桥杯算法提高VIP-输出九九乘法表 题解(c++直接输入,简单啦)
摘要:解题思路:直接输出啦,还用说明么!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int main(){ printf(" Nine-b……