题解列表

筛选

1999: 回文判断

摘要:equal 无脑往上拍。#include <bits/stdc++.h> using namespace std; int main(){     string s;     getlin……

1477: 字符串输入输出函数

摘要:简单题。#include<iostream> using namespace std; int main() {        double n;     string s;     co……

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;……

1095: The 3n + 1 problem

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