摘要: 任务4 task4.c 1 #define _CRT_SECURE_NO_WARNINGS 2 #include <stdio.h> 3 4 int main() { 5 FILE* file; 6 char filename[] = "data4.txt"; 7 char ch; 8 int li 阅读全文
posted @ 2025-06-05 14:43 tingying 阅读(18) 评论(0) 推荐(0)
摘要: 任务4 task4.c 1 #include <stdio.h> 2 #define N 10 3 4 typedef struct { 5 char isbn[20]; // isbn号 6 char name[80]; // 书名 7 char author[80]; // 作者 8 doubl 阅读全文
posted @ 2025-05-27 16:33 tingying 阅读(10) 评论(0) 推荐(0)
摘要: 任务1 task1_1.c 1 #include <stdio.h> 2 #define N 5 3 4 void input(int x[], int n); 5 void output(int x[], int n); 6 void find_min_max(int x[], int n, in 阅读全文
posted @ 2025-05-18 22:20 tingying 阅读(21) 评论(0) 推荐(0)
摘要: 任务1 task1.c 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1(){ 6 int x[N] = { 1, 9, 8, 4 }; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("s 阅读全文
posted @ 2025-04-20 21:30 tingying 阅读(8) 评论(0) 推荐(0)
摘要: 任务1 task1.c 1 int main() { 2 int score; 3 char grade; 4 5 while (scanf_s("%d", &score) != EOF) { 6 grade = score_to_grade(score); // 函数调用 7 printf("分数 阅读全文
posted @ 2025-04-07 19:13 tingying 阅读(24) 评论(0) 推荐(0)
摘要: 任务1 task1.c 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 5 #define N 5 6 7 int main() { 8 int number; 9 int i; 10 11 srand(time(0) 阅读全文
posted @ 2025-03-18 20:38 tingying 阅读(22) 评论(0) 推荐(0)
摘要: 实验任务1 源代码 task1_1.c 1 //打印一个字符小人 2 3 #include <stdio.h> 4 int main() 5 { 6 printf(" O \n"); 7 printf("<H>\n"); 8 printf("I I\n"); 9 printf(" O \n"); 1 阅读全文
posted @ 2025-03-05 19:26 tingying 阅读(33) 评论(3) 推荐(0)