摘要: 实验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-08 10:36 朱文宇 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 实验任务1: 1 #include<stdio.h> 2 char score_to_grade(int score); 3 int main(){ 4 int score; 5 char grade; 6 7 while(scanf("%d",&score)!=EOF){ 8 grade = sc 阅读全文
posted @ 2024-10-29 15:35 朱文宇 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 实验1: line21:为了控制学号的尾号在397到476之间 line25:为了控制学号的尾号在1到21之间 这个程序可以实现在班中随机抽学号 实验2: 实验3: 实验4: 实验5: 实验6: 阅读全文
posted @ 2024-10-11 15:24 朱文宇 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 任务1: 1 #include<stdio.h> 2 3 int main(){ 4 printf(" O O\n"); 5 printf(" <H> <H>\n"); 6 printf(" I I I I\n"); 7 return 0; 8 } 1 #include<stdio.h> 2 3 i 阅读全文
posted @ 2024-09-27 15:50 朱文宇 阅读(9) 评论(0) 推荐(1) 编辑