11 2023 档案
摘要:#include<stdio.h> #define N 80 int count(char x[]); int main() { char words[N+1]; int n; while(gets(words) != NULL) { n = count(words); printf("单词数: %
阅读全文
摘要:#include<stdio.h> #include<stdlib.h> #include<time.h> #define N 5 #define N1 374 #define N2 465 int main() { int number; int i; srand(time(0)); for(i=
阅读全文
摘要:#include<stdio.h> int func(int n,int m); int main() { int n,m; while(scanf("%d%d",&n,&m)!= EOF) printf("n=%d,m=%d,ans=%d\n",n,m,func(n,m)); return 0;
阅读全文