实验七
任务四
1 #include <stdio.h> 2 3 int main() 4 { 5 int line_count=1,char_count=0; 6 7 FILE *fp=fopen("data4.txt","r"); 8 9 while(!feof(fp)) 10 { 11 char ch=fgetc(fp); 12 if(ch==EOF) 13 break; 14 15 if(ch=='\n') 16 line_count++; 17 else if(!(ch=='\t'||ch==' ')) 18 char_count++; 19 } 20 21 fclose(fp); 22 23 printf("data4.txt统计结果:\n行数:%d\n字符数(不计空白符):%d",line_count,char_count); 24 25 return 0; 26 }
任务五
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 write(stu, N); // 输出考试通过的考生信息到文件 35 36 pass_rate = 1.0 * cnt / N; 37 printf("\n本次等级考试通过率: %.2f%%\n", pass_rate*100); 38 39 return 0; 40 } 41 42 // 把所有考生完整信息输出到屏幕上 43 // 准考证号,姓名,客观题得分,操作题得分,总分,结果 44 void output(STU st[], int n) { 45 int i; 46 47 printf("准考证号\t姓名\t客观题得分\t操作题得分\t总分\t\t结果\n"); 48 for (i = 0; i < n; i++) 49 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); 50 } 51 52 // 从文本文件examinee.txt读入考生信息:准考证号,姓名,客观题得分,操作题得分 53 void read(STU st[], int n) { 54 int i; 55 FILE *fin; 56 57 fin = fopen("D:\\examinee.txt", "r"); 58 if (!fin) { 59 printf("fail to open file\n"); 60 return; 61 } 62 63 while (!feof(fin)) { 64 for (i = 0; i < n; i++) 65 fscanf(fin, "%ld %s %f %f", &st[i].id, st[i].name, &st[i].objective, &st[i].subjective); 66 } 67 68 fclose(fin); 69 } 70 71 // 把通过考试的考生完整信息写入文件list_pass.txt 72 // 准考证号,姓名,客观题得分,操作题得分,总分,结果 73 void write(STU st[], int n) { 74 int i; 75 FILE *fout; 76 fout = fopen("D:\\examinee.txt", "w"); 77 if (!fout) { 78 printf("fail to open file\n"); 79 return; 80 } 81 fprintf(fout,"%-10s %-10s %-20s %-20s %-20s %s\n","准考证号","姓名","客观题得分","操作题得分","总分","结果"); 82 for (i = 0; i < n; i++) 83 { 84 if( st[i].sum >= 60) 85 fprintf(fout,"%-10ld %-10s %-20.2f %-20.2f %-20.2f %s\n", st[i].id, st[i].name, st[i].objective, st[i].subjective, st[i].sum, st[i].result); 86 } 87 fclose(fout); 88 } 89 // 对考生信息进行处理:计算每位考生考试总分、结果;统计考试通过的人数 90 int process(STU st[], int n, STU st_pass[]) { 91 int i,count=0; 92 for (i = 0; i < n; i++) { 93 st[i].sum = st[i].objective + st[i].subjective; 94 if( st[i].sum >= 60) 95 { 96 strcpy(st[i].result,"通过"); 97 count++; 98 } 99 else 100 { 101 strcpy(st[i].result,"未通过"); 102 } 103 } 104 return count; 105 }
实验六
1 copy#include<stdio.h> 2 #include<stdlib.h> 3 #include<string.h> 4 #include<time.h> 5 #define N 80 6 7 struct STU{ 8 char num[N]; 9 char name[N]; 10 char classnum[N]; 11 int tmp; 12 }; 13 struct STU st[N],st_choose[N]; 14 void choose(struct STU st[N],struct STU st_choose[N],int n); 15 void output(struct STU st_choose[N]); 16 void write(struct STU t_choose[N]); 17 void read(struct STU st[N],int n); 18 19 int main(){ 20 int i; 21 for(i = 0; i < N; i++){ 22 st[i].tmp = i+1; 23 read(st,N); 24 choose(st,st_choose,N); 25 output(st_choose); 26 write(st_choose); 27 } 28 return 0; 29 } 30 void read(struct STU st[],int n){ 31 FILE *fp; int i; 32 fp=fopen("list.txt","r"); 33 if(!fp){ 34 printf("error"); 35 return; 36 } 37 while(!feof(fp)){ 38 for(i=1;i<=n;i++) 39 fscanf(fp,"%s %s %s",st[i].num,st[i].name,st[i].classnum); 40 } 41 fclose(fp); 42 } 43 void choose(struct STU st[N],struct STU st_choose[],int n){ 44 int i,j,z,g=1; 45 int x[N]={0}; 46 srand((unsigned)time(NULL));//设随机种子 47 for(i=1;i<=5;i++) 48 { 49 x[i]=rand()%n+1; 50 for(j=1;j<i;j++) 51 { if(x[i]==x[j]) //保证随机数互不相同 52 i--; 53 } 54 } 55 for(i=1;i<=n;i++) 56 for(z=1;z<=5;z++) 57 if(st[i].tmp==x[z]) 58 st_choose[g++]=st[i]; 59 } 60 void output(struct STU st_choose[N]) { 61 int i,sum[N]={0},j; struct STU t; 62 printf("--------------随机抽点名单--------------\n"); 63 //升序输出 64 for(i=1;i<=5;i++) 65 for(j=strlen(st_choose[i].num);j>7;j--) 66 sum[i]+=st_choose[i].num[j]-'0';//将字符学号存入一个数字数组中 67 for(i=1;i<=4;i++)//冒泡排序 68 for(j=1;j<=4-i;i++) 69 if(sum[j]>sum[j+1]) 70 { t=st_choose[j]; 71 st_choose[j]=st_choose[j+1]; 72 st_choose[j+1]=t; 73 } 74 for(i=1;i<=5;i++) 75 printf("%s %s %s\n",st_choose[i].num,st_choose[i].name,st_choose[i].classnum); 76 printf("--------------保存到文件------------\n"); 77 } 78 void write(struct STU st_choose[N]){ 79 int i; char str[N]; int info_day,info_month,info_year; 80 time_t rawtime; //声明初始时间 81 struct tm *info; //调用local函数产生的是结构体 ,定义info指针 82 time(&rawtime); 83 info=localtime(&rawtime);//调用localtime函数 84 strftime(str,80,"%Y%m%d",info);//调用strftime函数格式化 85 strcat(str,".txt"); 86 FILE *fp; 87 fp=fopen(str,"w"); 88 if(!fp) 89 { 90 printf("error"); 91 return; 92 } 93 for(i=1;i<=5;i++) 94 fprintf(fp,"%s %s %s\n",st_choose[i].num,st_choose[i].name,st_choose[i].classnum); 95 fclose(fp); 96 printf("文件保存成功!"); 97 }