题解列表

筛选

1148: C语言训练-计算1977!*

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,n=1;  int a[10000]={0};  a[0]=1;  for(i=2;i<=197……

自定义函数判断素数回文

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int su(int x) {     int j;     if (x <= 1)     {         r……

查找特定的值(c语言代码)

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