摘要: 实验任务4 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> int main() { int line = 1; int zifu = 0; FILE* fp; int ch; fp = fopen("F:\\qq\\1_gbk\\data4.t 阅读全文
posted @ 2025-12-30 19:36 nightmareplus 阅读(8) 评论(1) 推荐(0)
摘要: 实验任务4 #include <stdio.h> #include <stdlib.h> #define N 10 typedef struct { char isbn[20]; // isbn号 char name[80]; // 书名 char author[80]; // 作者 double 阅读全文
posted @ 2025-12-23 16:08 nightmareplus 阅读(11) 评论(1) 推荐(0)
摘要: 1.实验任务1 #include <stdio.h> #define N 5 void input(int x[], int n); void output(int x[], int n); void find_min_max(int x[], int n, int *pmin, int *pmax 阅读全文
posted @ 2025-12-12 15:04 nightmareplus 阅读(7) 评论(1) 推荐(0)
摘要: 实验任务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-16 23:42 nightmareplus 阅读(10) 评论(1) 推荐(0)
摘要: 1.实验任务1 #include <stdio.h> char score_to_grade(int score); // 函数声明 int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = sco 阅读全文
posted @ 2025-10-30 09:39 nightmareplus 阅读(14) 评论(4) 推荐(0)
摘要: 实验结论 1.实验任务1 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include<time.h> #define N 5 #define N1 80 #define N2 35 int main( 阅读全文
posted @ 2025-10-17 14:37 nightmareplus 阅读(16) 评论(1) 推荐(0)
摘要: 1.实验任务1 #include<stdio.h> int main() { printf(" o \n"); printf("<H>\n"); printf("I I\n"); printf(" o \n"); printf("<H>\n"); printf("I I\n"); return 0; 阅读全文
posted @ 2025-10-09 14:15 nightmareplus 阅读(9) 评论(1) 推荐(0)