04 2025 档案

摘要:实验4_C语言数组应用编程 实验任务1 task1.c源代码 点击查看代码 #include <stdio.h> #include<stdlib.h> #define N 4 #define M 2 void test1() { int x[N] = {1, 9, 8, 4}; int i; // 阅读全文
posted @ 2025-04-20 23:29 High_Auditorium 阅读(28) 评论(0) 推荐(0)
摘要:实验3_C语言函数应用编程 实验任务1 task1.c源代码 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( 阅读全文
posted @ 2025-04-07 16:42 High_Auditorium 阅读(40) 评论(0) 推荐(0)