003: [编程入门]密码破译 摘要:解题思路:注意事项:前面char过了,后面就不用char了参考代码:#include <iostream> using namespace std;int main(){char C,h,i,n,a;…… 题解列表 2022年10月07日 0 点赞 0 评论 488 浏览 评分:8.7
1002: [编程入门]三个数最大值 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; if(a>b && …… 题解列表 2022年10月07日 0 点赞 0 评论 265 浏览 评分:9.9
1002: [编程入门]三个数最大值 摘要:解题思路:注意事项:if的格式(有两个&)参考代码:#include <iostream> using namespace std;int main(){int a,b,c;cin>>a>>b>>c;…… 题解列表 2022年10月07日 0 点赞 0 评论 317 浏览 评分:9.9
1113-保留字母 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ string s,s1; getli…… 题解列表 2022年10月06日 0 点赞 0 评论 200 浏览 评分:0.0
1112-一元二次方程 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath> using namespace std;int main(){ int a,b,c; cin >>a …… 题解列表 2022年10月06日 0 点赞 0 评论 176 浏览 评分:0.0
1052-链表合并 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;typedef struct Node{ int num; int grade…… 题解列表 2022年10月06日 0 点赞 0 评论 183 浏览 评分:0.0
1143: C语言训练-素数问题 摘要:```cpp #include #include using namespace std; int main() { int n; bool flag=true; …… 题解列表 2022年10月06日 0 点赞 0 评论 316 浏览 评分:9.9
1142: C语言训练-立方和不等式 摘要:```cpp #include #define c3(n)n*n*n using namespace std; int main() { int n,t=1,sum=0; …… 题解列表 2022年10月06日 0 点赞 0 评论 386 浏览 评分:9.9
1141: C语言训练-百钱百鸡问题 摘要:方法一: ```cpp #include using namespace std; int main() { for(int cock=0;cock…… 题解列表 2022年10月06日 0 点赞 0 评论 300 浏览 评分:9.9
1051-结构体之成绩统计2 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ char num[10]; char name…… 题解列表 2022年10月06日 0 点赞 0 评论 200 浏览 评分:0.0