04 2025 档案

摘要:task1 #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-04-17 22:08 提拉米苏ac 阅读(23) 评论(0) 推荐(0)
摘要:task1 #include <stdio.h> char score_to_grade(int score); // 函数声明 int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = score 阅读全文
posted @ 2025-04-09 21:06 提拉米苏ac 阅读(22) 评论(0) 推荐(0)