04 2025 档案

摘要:一.实验任务1 #include <stdio.h> #define N 4 #define M 2 #include<stdlib.h> void test1() { int x[N] = {1, 9, 8, 4}; int i; // 输出数组x占用的内存字节数 printf("sizeof(x 阅读全文
posted @ 2025-04-20 23:37 94kiiiiiig 阅读(15) 评论(0) 推荐(0)
摘要:一.实验任务1 实验代码: 1 #include <stdio.h> 2 3 char score_to_grade(int score); // 函数声明 4 5 int main() { 6 int score; 7 char grade; 8 9 while(scanf("%d", &scor 阅读全文
posted @ 2025-04-09 23:19 94kiiiiiig 阅读(20) 评论(0) 推荐(0)