题解列表

筛选

一种超简单的方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m,sum=0; scanf("%d",&n); while(~scanf("%d",&m)) { ……

1054: 二级C语言-计算素数和

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int func(int x); int main() {     int a,n;     int sum = 0;  ……

c++排序问题

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<algorithm>int main(){ int a[4]={0}; in……

C语言训练-邮票组合问题*

摘要:解题思路:注意事项:参考代码:  #include<stdio.h>   int main()   {   printf("19");   return 0;      }……

二级C语言-自定义函数

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> double fact(long long n); double my_pow(double ……