题解列表

筛选

编写题解 2830: 数字统计

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

编写题解 2829: 数1的个数

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

编写题解 2828: 与7无关的数

摘要:解题思路:注意事项:参考代码://编写题解 2828: 与7无关的数 //一个正整数,如果它能被7整除,或者它的十进制表示法中某一位上的数字为7,则称其为与7相关的数。现求所有小于等于n(n < 1……

二级C语言-自定义函数

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

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

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