摘要:
1 #include<stdio.h> 2 #define N 4 3 #define M 2 4 void test1() 5 { 6 int x[N] = { 1,9,8,4 }; 7 int i; 8 printf("sizeof(x)=%d\n", sizeof(x)); 9 for (i 阅读全文
摘要:
1 1 #include<stdio.h> 2 char score(int s); 3 int main() 4 { 5 int s; 6 char a; 7 while (scanf("%d", &s) != EOF) 8 { 9 a = score(s); 10 printf("分数:%d", 阅读全文
摘要:
1 #include<stdio.h> 2 #include<math.h> 3 #include<time.h> 4 #define N 5 5 #define N1 397 6 #define N2 476 7 #define N3 21 8 int main() 9 { 10 int cnt 阅读全文