摘要:
任务1 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("sizeof(x) 阅读全文
摘要:
任务1 1 #include <stdio.h> 2 char score_to_grade(int score); 3 int main() 4 { 5 int score; 6 char grade; 7 while(scanf("%d",&score) !=EOF){ 8 grade=scor 阅读全文
摘要:
任务1 1 #include<stdio.h> 2 #include<stdlib.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 in 阅读全文
摘要:
任务1 #include<stdio.h> int main () { printf(" o\t o\n"); printf("<H>\t<H>\n"); printf("I I\tI I\n"); return 0; } #include<stdio.h> int main () { printf 阅读全文