题解列表

筛选

人口增长问题

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

2814: 正常血压

摘要:注意事项:C++语言,别弄错了参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int n,a,b,z=0,maxx=0;……

数组逆序重放

摘要:参考代码:#include <bits/stdc++.h>using namespace std;int a[100];int main(int argc, char** argv) { int n;……

3016: 第几项

摘要:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int a,b,s = 0;    cin>>a;    for(int……

1+1=3型号计算器

摘要:解题思路:参考代码:#include<bits/stdc++.h> int choise_F(char A); int main(){   int x,y;  char A;     while(sc……

整理药名(C++)简单实用

摘要:代码解析:参考代码:#include <iostream>#include <string>#include <cctype>using namespace std;string formatMedi……

2836: 数组逆序重放

摘要:参考代码:#includeusing namespace std;int a[1000000];int main(){    int n;    cin>>n;    for(int i=1; i<=……