题解列表

筛选

[编程入门]C语言循环移位

摘要:解题思路:注意事项:参考代码://程序名:新的C++程序//作者: #include<iostream>#include<fstream>#include<algorithm>using namesp……

[编程入门]二进制移位练习

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>#include<cmath>using namespace std;vector<int> arr;……

1195: 去掉双斜杠注释

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    string str1="//";    string……

1197: 发工资咯

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

二级C语言-求偶数和

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

P1087 数组解法

摘要:解题思路:我看好多题解没有严格按照输入标准来hhh 其实利用二维数组可以实现题目要求注意事项:goto语句和break语句的使用参考代码:#include<iostream>using namespa……