二级C语言-公约公倍 摘要:```cpp #include using namespace std; int main() { int a,b,m,n,r; cin>>m>>n; a=m; …… 题解列表 2022年08月15日 0 点赞 0 评论 838 浏览 评分:9.9
特殊排序(容器) 摘要:#include<iostream> using namespace std; #include<vector> #include<algorithm> int main() { int…… 题解列表 2022年08月15日 0 点赞 0 评论 433 浏览 评分:0.0
成绩排序(容器) 摘要:#include<iostream> using namespace std; #include<vector> #include<string> #include<algorithm> c…… 题解列表 2022年08月15日 0 点赞 0 评论 427 浏览 评分:0.0
[编程入门]结构体之成绩统计2 新手简单易懂版本 摘要:```cpp #include #include using namespace std; struct Student { string xuehao; string xingmi…… 题解列表 2022年08月15日 0 点赞 0 评论 487 浏览 评分:9.9
1034简单的解法 摘要:解题思路:如下注意事项:如果复制,请复制过后检查,我提交时是正确的。参考代码:#include<stdio.h>int main(){ int a,b,c,d,e;//定义a,b,c,d,e; sc…… 题解列表 2022年08月15日 0 点赞 2 评论 348 浏览 评分:9.9
二级C语言-计负均正 摘要:```cpp #include #include using namespace std; int main() { int a[21],as=0,bs=0,bss=0; …… 题解列表 2022年08月15日 0 点赞 0 评论 768 浏览 评分:9.9
二级C语言-分段函数 摘要:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ double x; cin>>x; i…… 题解列表 2022年08月15日 0 点赞 0 评论 733 浏览 评分:9.9
编写题解 1098: 陶陶摘苹果(c语言 看题解都比较麻烦,写一个基础简单的) 摘要:解题思路:正常的数组的输入与输出注意事项:不要被题目中的30厘米迷惑了,直接加上去就行参考代码:#include<stdio.h> int main(){ int a[10],i,n,c…… 题解列表 2022年08月15日 0 点赞 0 评论 880 浏览 评分:9.9
简洁for循环 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,max; scanf("%d",&a); max=a; for(int i=…… 题解列表 2022年08月15日 0 点赞 0 评论 479 浏览 评分:0.0
题解 1033: [编程入门]自定义函数之字符提取(C) 摘要:解题思路:咱就是说gets和strlen函数不要太好用~,兄弟们用起来~参考代码:#include<stdio.h> #include<string.h> int Vowel(char a[]…… 题解列表 2022年08月15日 0 点赞 0 评论 430 浏览 评分:0.0