题解列表

筛选

二级C语言-温度转换

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<fstream>#include<algorithm>using namespace std;double f,c;……

[编程入门]水仙花数判断

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ cout<<153<<endl<<370<<endl<<37……

1669: 求圆的面积

摘要:解题思路:直接求注意事项:用double参考代码:#include<iostream>#include<fstream>#include<algorithm>using namespace std;d……

[编程入门]选择排序

摘要:解题思路:直接排序注意事项:sort参考代码:#include<bits/stdc++.h>using namespace std;long long a[15];int main(){     fo……

1035 自定义函数之字符串字符类型统计

摘要:解题思路:1.输入2.统计个数 并存储到相应的变量当中去3.输出4个数字 并用空格分开注意事项: 将变量初始化 便于后面计算参考代码:  a=b=c=d=0  #初始化num = input()  #……

二级C语言-求偶数和

摘要:解题思路:用%做注意事项:%2参考代码:#include<bits/stdc++.h>using namespace std;int n,s,z;int main(){     cin>>n; for……

1197: 发工资咯

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int Dno[6]={100,50,10,5,2,1};//面额大小 int su……