题解列表

筛选

1203: 多输入输出练习2

摘要:#include <bits/stdc++.h> using namespace std; int main(){     const double PI = 3.1415;//PI要取到四……

1202: 多输入输出练习1

摘要:#include <bits/stdc++.h> using namespace std; //以空格为分隔符分割字符串 vector<int> split(const string &s,……

1200: 回文串

摘要:回文串判断,直接 equal 函数往上拍。#include <bits/stdc++.h> using namespace std; int main(){     string s;  ……

1121: C语言训练-8除不尽的数

摘要:暴力法解决,循环的事情就交给计算机来做吧。#include <bits/stdc++.h> using namespace std; int main(){     for(int i=0;……

1978: 分类计算

摘要:解题思路:注意事项:参考代码:a,b = map(int,input().split()) if a**2+b**2>100:     print(a**2+b**2) else:     p……

1095: The 3n + 1 problem

摘要:从 a 到 b 挨个判断跌落到 1 需要的次数,保存最大的次数。注意 a 大于 b 的情形。#include <bits/stdc++.h> using namespace std; int ……

建议新手观看

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>/* run this program using the console pauser or ……

【C语言题解】三个数的最大值

摘要:解题思路:利用变量max更新最大值,如果a大于max,那么max赋值为a,如果b大于max,max赋值为b。。。。。注意事项:        ·第一种情况:如果题目要求输入的三个数a,b,c都大于0,……

1977: 求中间数

摘要:解题思路:注意事项:参考代码:ls = list(map(int,input().split())) ls.sort() print(ls[1])……