首页 > 其他分享 >实验7

实验7

时间:2023-12-18 20:38:50浏览次数:25  
标签:fp int st ++ 实验 printf include

任务4源码

 

 1 #define _CRT_SECURE_NO_WARNINGS
 2 #include <stdio.h>
 3 #include <string.h>
 4 int main()
 5 {
 6     FILE* fp;
 7     fp = fopen("e:\\data4.txt", "r");
 8     if (fp == NULL)
 9     {
10         printf("无法打开文件\n");
11         return 1;
12     }
13     int count = 0;
14     char c;
15     while ((c=fgetc(fp))!=EOF)
16     {
17         if (c != ' ' && c!='\n')
18         {
19             count++;
20         }
21     }
22     printf("%d", count);
23     fclose(fp);
24     return 0;
25 }

 

任务4结果

 

 

任务5源码

 

  1 #define _CRT_SECURE_NO_WARNINGS
  2 #include <stdio.h>
  3 #include <string.h>
  4 #include <stdlib.h>
  5 
  6 #define N 10
  7 
  8 typedef struct {
  9     long int id;
 10     char name[20];
 11     float objective;    // 客观题得分
 12     float subjective;   // 操作题得分
 13     float sum;          // 总分
 14     char ans[10];       // 考试结果
 15 } STU;
 16 
 17 // 函数声明
 18 void finput(STU st[], int n);
 19 void foutput(STU st[], int n);
 20 void output(STU st[], int n);
 21 int process(STU st[], int n, STU st_pass[]);
 22 
 23 int main() {
 24     STU stu[N], stu_pass[N];
 25     int cnt;
 26     double pass_rate;
 27 
 28     printf("从文件读入%d个考生信息...\n", N);
 29     finput(stu, N);
 30 
 31     printf("\n对考生成绩进行统计...\n");
 32     cnt = process(stu, N, stu_pass);
 33 
 34     printf("\n通过考试的名单:\n");
 35     output(stu, N);      // 输出到屏幕
 36     foutput(stu, N);    // 输出到文件
 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].ans);
 52 }
 53 
 54 // 从文本文件examinee.txt读入考生信息:准考证号,姓名,客观题得分,操作题得分
 55 void finput(STU st[], int n) {
 56     int i;
 57     FILE* fin;
 58 
 59     fin = fopen("examinee.txt", "r");
 60     if (fin == NULL) {
 61         printf("fail to open file\n");
 62         exit(0);
 63     }
 64 
 65     while (!feof(fin)) {
 66         for (i = 0; i < n; i++)
 67             fscanf(fin, "%ld %s %f %f", &st[i].id, st[i].name, &st[i].objective, &st[i].subjective);
 68     }
 69 
 70     fclose(fin);
 71 }
 72 
 73 // 把通过考试的考生完整信息写入文件list_pass.txt
 74 // 准考证号,姓名,客观题得分,操作题得分,总分,结果
 75 void foutput(STU s[], int n) {
 76     FILE* fout;
 77     int i;
 78 
 79     // 保存到文件 
 80     fout = fopen("list_pass.txt", "w");
 81     if (!fout) {
 82         printf("fail to open or create list_pass.txt\n");
 83         exit(0);
 84     }
 85 
 86     fprintf(fout, "准考证号\t\t姓名\t客观题得分\t操作题得分\t总分\t\t结果\n");
 87 
 88     for (i = 0; i < n; i++)
 89         fprintf(fout, "%ld\t\t%s\t%.2f\t\t%.2f\t\t%.2f\t\t%s\n", s[i].id, s[i].name, s[i].objective, s[i].subjective, s[i].sum, s[i].ans);
 90 
 91     fclose(fout);
 92 }
 93 
 94 
 95 
 96 // 对考生信息进行处理:计算每位考生考试总分、结果;统计考试通过的人数
 97 int process(STU st[], int n, STU st_pass[]) {
 98     int i;
 99     int k = 0;
100     for (i = 0; i < n; i++)
101     {
102         st[i].sum = st[i].objective + st[i].subjective;
103         if (st[i].sum >= 60)
104         {
105             strcpy(st[i].ans,"通过");
106             st_pass[k++] = st[i];
107         }
108         else
109         {
110             strcpy(st[i].ans, "未通过");
111         }     
112     }
113     return k;
114 }

 

任务5结果

 

 

 

任务6源码

 

 1 #define _CRT_SECURE_NO_WARNINGS
 2 #include<stdio.h>
 3 #include<stdlib.h>
 4 #include<time.h>
 5 int main()
 6 {
 7     FILE* fp;
 8     fp = fopen("list.txt","r");
 9     if (fp == NULL)
10     {
11         printf("failed");
12         exit(0);
13     }
14     int i;
15     char a[80][100];
16     for (i = 0; i < 80; i++)
17     {
18         fgets(a[i], 100, fp);
19     }
20     FILE* fp2;
21     fp2 = fopen("lucky.txt", "w");
22     if (fp2 == NULL)
23     {
24         printf("failed");
25         exit(0);
26     }
27     srand(time(NULL));
28     for (i = 0; i < 5; i++)
29     {
30         int t = 0;
31         t = rand() % 81;
32         fprintf(fp2, "%s", a[t]);
33         printf("%s", a[t]);
34     }
35     return 0;
36 }
 1 #define _CRT_SECURE_NO_WARNINGS
 2 #define N 5
 3 #include<stdio.h>
 4 #include<stdlib.h>
 5 #include<time.h>
 6 #include<string.h>
 7 int main()
 8 {
 9     FILE* fp;
10     fp = fopen("list.txt","r");
11     if (fp == NULL)
12     {
13         printf("failed");
14         exit(0);
15     }
16     int i;
17     char a[80][100];
18     for (i = 0; i < 80; i++)
19     {
20         fgets(a[i], 100, fp);
21     }
22     FILE* fp2;
23     char Time[20];
24     time_t timer;
25     timer = time(NULL);
26     strftime(Time, 20, "%Y.%m.%d", localtime(&timer));
27     fp2 = fopen(Time, "w");
28     if (fp2 == NULL)
29     {
30         printf("failed");
31         exit(0);
32     }
33     char b[5][100];
34     srand((double)time(NULL));
35     for (i = 0; i < N;)
36     {
37         int t = 0;
38         t = rand() % 81;
39         if (strcmp(a[t], " "))
40         {
41             strcpy(b[i], a[t]);
42             strcpy(a[t], " ");
43             i++;
44         }
45     }
46     int j;
47     for (i = 0; i < N - 1; i++)
48     {
49         for (j = 0; j < N - i - 1; j++)
50         {
51             if (strcmp(b[j], b[j + 1]) > 0)
52             {
53                 char c[100];
54                 strcpy(c, b[j]);
55                 strcpy(b[j], b[j + 1]);
56                 strcpy(b[j + 1], c);
57             }
58         }
59     }
60     for (i = 0; i < N; i++)
61     {
62         fprintf(fp2, "%s" , b[i]);
63         puts(b[i]);
64     }
65     return 0;
66 }

 

任务6结果

 

 

 

 

 

标签:fp,int,st,++,实验,printf,include
From: https://www.cnblogs.com/syf0824/p/17912164.html

相关文章

  • 【实验】配置用户自动获取IPv6地址的案例
    原创:厦门微思网络组网需求PC直连Router的接口后可通过协议自动获取IPv6地址,并自动生成默认网关,从而使PC与路由器可以自动连通。具体到该试验中,在路由器使能RA(RouterAdvertisement,路由器通告)后,PC能够根据接收到的RA报文自动配置地址,且能生成指向该路由器的默认路由。编辑图1 配置......
  • 实验七
    4.实验41#include<stdio.h>2#include<string.h>3#include<string.h>4#defineM9995intmain(){6charx[M];7FILE*fp;8intlen,t=0,a=0;9if((fp=fopen("E:\\data4.txt","r"))==NULL){1......
  • 实验7 文件应用编程
    1.实验任务1【验证性实验】2.实验任务2【验证性实验】3.实验任务3【验证性实验】4.实验任务4task4源代码:1#include<stdio.h>2#include<stdlib.h>34intmain(){5FILE*fp;6intt=0;7chara;89fp=fopen("D:/c语言/实验7......
  • 实验六
    4#include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Book;voidoutput......
  • 实验7 文件应用编程
    四、实验结论4.实验任务4task4.c1#include<stdio.h>23intmain(){4FILE*fp;56intcount=0;78fp=fopen("data4.txt","r");910if(fp==NULL){11printf("failtoopenf......
  • 实验六
    #include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Book;voidoutput(B......
  • 实验七
    实验任务4源代码1#include<stdio.h>2#defineN1003#defineM1004intmain(){5FILE*fp;6chara[N][M];7inti,j=0,k=0,s=0;8fp=fopen("data4.txt","r");9if(fp==NULL){10printf("false......
  • 实验6
    #include<iostream>#include<stdexcept>usingnamespacestd;template<typenameT>classVector{private:T*data;intsize;public:Vector():data(nullptr),size(0){}Vector(intn):size(n){data=newT[n......
  • 实验6
    #include<iostream>#include"Vector.hpp"voidtest(){usingnamespacestd;intn;cin>>n;Vector<double>x1(n);for(autoi=0;i<n;++i)x1.at(i)=i*0.7;output(x1);V......
  • 实验6
      task4#include<stdio.h>#defineN10typedefstruct{charisbn[20];//isbn号charname[80];//书名charauthor[80];//作者doublesales_price;//售价intsales_count;//销售册数}Book;v......