摘要: 实验1 #include <stdio.h> #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-10 17:04 Carrotz 阅读(16) 评论(1) 推荐(0)
摘要: 实验1 #include <stdio.h> char score_to_grade(int score); // 函数声明 int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = score_t 阅读全文
posted @ 2025-10-24 13:22 Carrotz 阅读(11) 评论(1) 推荐(0)
摘要: 实验1 问题1:srand(time(NULL))设置时间为随机种,保证每次随机数都不一样 问题2:在两个班中随机抽五个学号 实验2 问题1:每次循环总价不清空,导致后面询问时数据出错 问题2:结束这一轮循环,跳过后面的语句; 实验3 #include<stdio.h> int main(){ ch 阅读全文
posted @ 2025-10-14 13:59 Carrotz 阅读(8) 评论(1) 推荐(0)
摘要: 实验任务1 #include <stdio.h> #include <math.h> signed main() { //任务1 // printf(" O \n"); // printf("<H>\n"); // printf("I I\n"); //任务1_1 // printf(" O \n" 阅读全文
posted @ 2025-09-26 20:13 Carrotz 阅读(9) 评论(1) 推荐(0)