实验7
任务4
1 #include<stdio.h> 2 #include<stdlib.h> 3 int main(void){ 4 FILE *fp; 5 int line_cnt=1; 6 int char_cnt=0; 7 char ch; 8 if((fp=fopen("C:\\Users\\Administrator\\Desktop\\data4.txt","rb"))==NULL){ 9 printf("文件打开失败\n"); 10 return 1; 11 } 12 13 while((ch=fgetc(fp)!=EOF)){ 14 if(ch=='\n'){ 15 line_cnt++; 16 } 17 if(ch!=' '&&ch!='\t'&&ch!='\n'){ 18 char_cnt++; 19 } 20 fclose(fp); 21 printf("data4.txt统计结果;\n"); 22 printf("行数:%d\n",line_cnt); 23 printf("字符数(不计空白符):%d\n",char_cnt); 24 system("pause"); 25 return 0; 26 } 27 }

任务5:
1 #include <stdio.h> 2 #include <string.h> 3 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 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("C:\\Users\\daisy\\Desktop\\实验7\\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 // 对考生信息进行处理:计算每位考生考试总分、结果;统计并返回通过考试的人数 72 int process(STU st[], int n, STU st_pass[]) { 73 int i, count = 0; 74 for (i = 0; i < n; i++) 75 { 76 st[i].sum = st[i].objective + st[i].subjective; 77 78 if (st[i].sum >= 60) 79 { 80 strcpy(st[i].result, "通过"); 81 st_pass[count] = st[i]; 82 count++; 83 }else{ 84 strcpy(st[i].result, "不通过"); 85 } 86 } 87 return count; 88 } 89 90 // 把通过考试的考生完整信息写入文件list_pass.txt 91 // 准考证号,姓名,客观题得分,操作题得分,总分,结果 92 void write(STU st[], int n) { 93 int i; 94 FILE *fout; 95 fout = fopen("list_pass.txt", "w"); 96 if(!fout) 97 { 98 printf("无法创建输出文件\n"); 99 return; 100 } 101 fprintf(fout, "准考证号\t姓名\t客观题得分\t操作题得分\t总分\t结果\n"); 102 for(i = 0; i < n; i++) 103 { 104 fprintf(fout, " %ld\t%s\t%.2f\t\t%.2f\t\t%.2f\t%s\n", st[i].id, st[i].name, st[i].objective, st[i].subjective, st[i].sum, st[i].result); 105 } 106 fclose(fout); 107 }

任务6:
1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 5 #define N 80 6 7 typedef struct { 8 char id[15]; 9 char name[20]; 10 char cls[30]; 11 } Student; 12 13 int main() { 14 Student s[N], lucky[5]; 15 int flag[N] = {0}; 16 FILE *fp; 17 int i, n = 0; 18 int cnt = 0; 19 char fname[50]; 20 21 fp = fopen("list.txt", "r"); 22 if (fp == NULL) { 23 printf("无法打开 list.txt\n"); 24 return 1; 25 } 26 27 while (fscanf(fp, "%s%s%[^\n]", s[n].id, s[n].name, s[n].cls) != EOF) { 28 n++; 29 } 30 fclose(fp); 31 32 srand(time(NULL)); 33 34 while (cnt < 5) { 35 int r = rand() % n; 36 if (flag[r] == 0) { 37 lucky[cnt] = s[r]; 38 flag[r] = 1; 39 cnt++; 40 } 41 } 42 43 printf("--- 中奖名单 ---\n"); 44 for (i = 0; i < 5; i++) { 45 printf("%s %s %s\n", lucky[i].id, lucky[i].name, lucky[i].cls); 46 } 47 48 printf("保存到文件\n"); 49 printf("输入文件名:"); 50 scanf("%s", fname); 51 52 fp = fopen(fname, "w"); 53 if (fp == NULL) { 54 printf("文件保存失败\n"); 55 return 1; 56 } 57 58 for (i = 0; i < 5; i++) { 59 fprintf(fp, "%s %s %s\n", lucky[i].id, lucky[i].name, lucky[i].cls); 60 } 61 fclose(fp); 62 63 printf("保存成功!\n"); 64 system("pause"); 65 return 0; 66 }

浙公网安备 33010602011771号