实验七
实验任务4
task4.c源代码
1 #include <stdio.h> 2 3 int main() 4 { 5 FILE *fp; 6 char ch; 7 int line = 0; 8 int charCnt = 0; 9 10 fp = fopen("data4.txt", "r"); 11 if (fp == NULL) 12 { 13 printf("文件打开失败!\n"); 14 return 1; 15 } 16 17 18 while ((ch = fgetc(fp)) != EOF) 19 { 20 21 if (ch == '\n') 22 { 23 line++; 24 } 25 26 else if (ch != ' ' && ch != '\t') 27 { 28 charCnt++; 29 } 30 } 31 32 33 fclose(fp); 34 35 36 printf("data4.txt统计结果:\n"); 37 printf("行数: %d\n", line); 38 printf("字符数(不计空白符): %d\n", charCnt); 39 40 return 0; 41 }

实验任务5
task5.c源代码
1 #include <stdio.h> 2 #include <string.h> 3 #include <stdlib.h> 4 #define N 10 5 6 typedef struct { 7 long id; // 准考证号 8 char name[20]; // 姓名 9 float objective; // 客观题得分 10 float subjective; // 操作题得分 11 float sum; // 总分 12 char result[10]; // 考试结果 13 } STU; 14 15 // 函数声明 16 void read(STU st[], int n); 17 void write(STU st[], int n); 18 void output(STU st[], int n); 19 int process(STU st[], int n, STU st_pass[]); 20 21 int main() { 22 STU stu[N], stu_pass[N]; 23 int cnt; 24 double pass_rate; 25 26 printf("从文件读入%d个考生信息: 已完成\n", N); 27 read(stu, N); 28 29 printf("\n对考生成绩进行统计: 已完成\n"); 30 cnt = process(stu, N, stu_pass); 31 32 printf("\n所有考生完整信息:\n"); 33 output(stu, N); 34 35 printf("\n通过考试的名单写入文件: 已完成!\n"); 36 write(stu_pass, cnt); 37 38 pass_rate = 1.0 * cnt / N; 39 printf("\n本次等级考试通过率: %.2f%%\n", pass_rate*100); 40 system("pause"); 41 return 0; 42 } 43 44 // 把所有考生完整信息输出到屏幕上 45 // 准考证号,姓名,客观题得分,操作题得分,总分,结果 46 void output(STU st[], int n) { 47 int i; 48 49 printf("准考证号\t姓名\t客观题得分\t操作题得分\t总分\t\t结果\n"); 50 for (i = 0; i < n; i++) 51 printf("%ld\t\t%s\t%.2f\t\t%.2f\t\t%.2f\t\t%s\n", st[i].id, st[i].name, st[i].objective, st[i].subjective, st[i].sum, st[i].result); 52 } 53 54 // 从文本文件examinee.txt读入考生信息:准考证号,姓名,客观题得分,操作题得分 55 void read(STU st[], int n) { 56 int i; 57 FILE *fin; 58 59 fin = fopen("examinee.txt", "r"); 60 if (!fin) { 61 printf("fail to open file\n"); 62 return; 63 } 64 65 for (i = 0; i < n; i++) 66 fscanf(fin, "%ld %s %f %f", &st[i].id, st[i].name, &st[i].objective, &st[i].subjective); 67 68 fclose(fin); 69 } 70 71 int process(STU st[], int n, STU st_pass[]){ 72 int pass_cnt = 0; 73 int i; 74 for(i=0;i<n;i++) 75 { 76 st[i].sum = st[i].objective + st[i].subjective; 77 if(st[i].sum >= 60) 78 { 79 strcpy(st[i].result,"通过"); 80 st_pass[pass_cnt] = st[i]; 81 pass_cnt++; 82 } 83 else 84 { 85 strcpy(st[i].result,"未通过"); 86 } 87 } 88 return pass_cnt; 89 } 90 void write(STU st[], int n) 91 { 92 int i; 93 FILE *fp = fopen("list_pass.txt","w"); 94 fprintf(fp,"%-10s%-10s%-12s%-12s%-10s%s\n", 95 "准考证号","姓名","客观题得分","操作题得分","总分","结果"); 96 for(i=0;i<n;i++) 97 { 98 fprintf(fp,"%-10ld%-10s%-12.2f%-12.2f%-10.2f%s\n", 99 st[i].id,st[i].name,st[i].objective,st[i].subjective,st[i].sum,st[i].result); 100 } 101 fclose(fp); 102 getchar(); 103 getchar(); 104 }

实验任务6
task6.c源代码
1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #include <string.h> 5 6 #define MAX_STU 80 7 8 #define DRAW_NUM 5 9 10 11 typedef struct { 12 char id[20]; 13 char name[20]; 14 char cls[30]; 15 } Student; 16 17 int main() 18 { 19 FILE *fpIn, *fpOut; 20 Student stu[MAX_STU]; 21 int flag[MAX_STU] = {0}; 22 int total = 0, i, j, randIdx, count = 0; 23 24 25 fpIn = fopen("list.txt", "r"); 26 if(fpIn == NULL){ 27 printf("打开名单文件失败!\n"); 28 return 1; 29 } 30 while(fscanf(fpIn, "%s %s %s", stu[total].id, stu[total].name, stu[total].cls) != EOF){ 31 total++; 32 } 33 fclose(fpIn); 34 35 36 srand((unsigned)time(NULL)); 37 printf("----------------中奖名单----------------\n"); 38 while(count < DRAW_NUM){ 39 randIdx = rand() % total; 40 if(flag[randIdx] == 0){ 41 flag[randIdx] = 1; 42 printf("%s %s %s\n", stu[randIdx].id, stu[randIdx].name, stu[randIdx].cls); 43 count++; 44 } 45 } 46 47 48 fpOut = fopen("20260615.txt", "w"); 49 for(i = 0; i < total; i++){ 50 if(flag[i] == 1){ 51 fprintf(fpOut, "%s %s %s\n", stu[i].id, stu[i].name, stu[i].cls); 52 } 53 } 54 fclose(fpOut); 55 printf("-----------------------------------------\n"); 56 printf("保存到文件\n"); 57 printf("保存文件名:20260615.txt\n"); 58 59 return 0; 60 }


浙公网安备 33010602011771号