1051:[编程入门]结构体之成绩统计2 摘要:```c #include #define Max 100 typedef struct sort{ char id[100]; char name[100]; int score…… 题解列表 2022年05月09日 0 点赞 0 评论 317 浏览 评分:0.0
[竞赛入门]简单的a+b 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ while(cin>>a>…… 题解列表 2022年05月09日 0 点赞 0 评论 304 浏览 评分:0.0
第一个HelloWorld程序 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ cout<<"**********************…… 题解列表 2022年05月09日 0 点赞 0 评论 271 浏览 评分:0.0
自定义函数处理最大公约数与最小公倍数 题解(c++简单 函数解决) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b;int main(){ scanf("%d%d",&a,&b)…… 题解列表 2022年05月09日 0 点赞 0 评论 353 浏览 评分:0.0
二级C语言-平均值计算 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int t,n,a[15],s;//定义int main(){ for(int i=…… 题解列表 2022年05月09日 0 点赞 0 评论 277 浏览 评分:0.0
[编程入门]三个数最大值 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a,b,c;int main(){ cin>>a>>b>>c; cout<…… 题解列表 2022年05月09日 0 点赞 0 评论 402 浏览 评分:0.0
二级C语言-求偶数和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int t,n,a,s;int main(){ cin>>n;//输入 for(in…… 题解列表 2022年05月09日 0 点赞 0 评论 299 浏览 评分:0.0
自定义函数处理素数 题解(简单啦) 摘要:解题思路:就是判断素数,简单粗暴。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ scanf("…… 题解列表 2022年05月09日 0 点赞 0 评论 382 浏览 评分:0.0
[编程入门]自由下落的距离计算 摘要:解题思路:模拟注意事项:要用double参考代码:#include<bits/stdc++.h>using namespace std;double n,m,a,b;int main(){ cin>>…… 题解列表 2022年05月09日 0 点赞 0 评论 285 浏览 评分:0.0
自定义函数处理素数 题解(简单啦) 摘要:解题思路:就是判断素数,简单粗暴。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int n;int main(){ scanf("…… 题解列表 2022年05月09日 0 点赞 0 评论 282 浏览 评分:0.0