题解列表

筛选

003: [编程入门]密码破译

摘要:解题思路:注意事项:前面char过了,后面就不用char了参考代码:#include <iostream> using namespace std;int main(){char C,h,i,n,a;……

1002: [编程入门]三个数最大值

摘要:解题思路:注意事项:if的格式(有两个&)参考代码:#include <iostream> using namespace std;int main(){int a,b,c;cin>>a>>b>>c;……

1113-保留字母

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ string s,s1; getli……

1112-一元二次方程

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath> using namespace std;int main(){ int a,b,c; cin >>a ……

1052-链表合并

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;typedef struct Node{     int num;     int grade……

1051-结构体之成绩统计2

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{     char num[10];     char name……