题解列表
2814: 正常血压
摘要:注意事项:C++语言,别弄错了参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,a,b,z=0,maxx=0;……
1+1=3型号计算器
摘要:解题思路:参考代码:#include<bits/stdc++.h> int choise_F(char A); int main(){ int x,y; char A; while(sc……
编写题解 1806: [编程基础]输入输出练习之第二个数字
摘要:解题思路: 1、创建三个整形变量 2、输入他们 3、输出第二个整形变量参考代码:#include<iostream>
using namespace std;
int main(……
整理药名(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<=……
2839: 石头剪刀布(百炼成钢,做了好多回才过)
摘要:解题思路:#include using namespace std;
int a[1000];
int b[1000];
int n;
int main()
{
int c,d,s……
2876: 矩阵交换行
摘要:参考代码:#include <bits/stdc++.h>using namespace std;int a[100][100];int main(){ int n,m; for(int ……