摘要: 任务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) 阅读全文
posted @ 2024-11-09 11:20 64rytr76d65 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 任务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 阅读全文
posted @ 2024-10-28 22:53 64rytr76d65 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 任务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 阅读全文
posted @ 2024-10-10 23:22 64rytr76d65 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 任务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 阅读全文
posted @ 2024-09-28 16:41 64rytr76d65 阅读(2) 评论(0) 推荐(0) 编辑