题解列表

筛选

求PI*(简单C++)

摘要:#include<iostream> #include<cmath> #include<iomanip> using namespace std; int main(){     doubl……

字符逆序C++实现

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){    string s;    get……

计算球体积

摘要:解题思路:while循环输入每输入一个输出一个结果注意事项:注意处理文件末尾参考代码:#include<iostream>#include<math.h>using namespace std;int……

阶乘运算!!!!!!!

摘要:解题思路:注意事项:      // 尼玛? 只能用 long long类型 或者 unsigned long 这两个类型?  double、float 也不行!!!!参考代码:#include<io……

最大数问题(超简单思路C++)

摘要:解题思路:让t不断改变成数组里面较大的数注意事项:参考代码:#include<iostream> using namespace std; int main() {     int a[88]……

斐波纳契数列(C++找规律)

摘要:解题思路:前两个数和等于第三个数注意事项:参考代码:#include<iostream> using namespace std; int main() {     int a[88]={1,……

C语言训练-数字母(简单C++)

摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() {     char s[88];     int i=0……