摘要: #include <stdio.h> 实验任务1: #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof(x) 阅读全文
posted @ 2025-11-16 21:19 呼- 阅读(6) 评论(1) 推荐(0)
摘要: 实验任务1: #include <stdio.h> char score_to_grade(int score); // 函数声明 int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = scor 阅读全文
posted @ 2025-10-30 19:10 呼- 阅读(10) 评论(1) 推荐(0)
摘要: 实验任务1: #include<stdio.h>#include<stdlib.h>#include<time.h>int main(){ #define N 5 #define N1 80 #define N2 35 int cut; int random_major,random_no; cut 阅读全文
posted @ 2025-10-19 11:39 呼- 阅读(6) 评论(1) 推荐(0)
摘要: https://www.cnblogs.com/jj11/ 阅读全文
posted @ 2025-10-12 11:14 呼- 阅读(4) 评论(0) 推荐(0)
摘要: #include<stdio.h> int main() { printf(" o \n"); printf("<H>\n"); printf("I I\n"); printf(" o \n"); printf("<H>\n"); printf("I I\n"); return 0; } #incl 阅读全文
posted @ 2025-10-09 11:46 呼- 阅读(11) 评论(1) 推荐(0)