首页 > 其他分享 >实验文档7

实验文档7

时间:2024-12-23 18:09:30浏览次数:4  
标签:%- cnt int st STU 实验 printf 文档

关于第7次实验课作业

实验结论

task4.c

 1 #define _CRT_SECURE_NO_WARNINGS
 2 #include<stdio.h>
 3 #define N 10000
 4 int main() {
 5     char ch[N];
 6     int line = 1;
 7     int n = 0;
 8     int j = 0;
 9     FILE* fp;
10     fp = fopen("data4.txt", "r");
11     if (!fp) {
12         printf("fail to open the file to read\n");
13         return 0;
14     }
15     int i = 0;
16     while (!feof(fp)) {
17         ch[i] = fgetc(fp);
18         if (ch[i] == '\n') {
19             line++;
20         }
21         if (ch[i] == EOF) {
22             break;
23         }
24         if (ch[i] == '\n' || ch[i] == ' ' || ch[i] == '    ') {
25             j++;
26         }
27         i++;
28     }
29     n = i - j;
30     fclose(fp);
31     printf("data4.txt统计结果:\n");
32     printf("%-20s%-20d\n", "行数", line);
33     printf("%-20s%-20d", "字符数(不计空白符)", n);
34     return 0;
35 }

 

 

task5.c

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

 

 

 

task6.c

必做

 1 #define _CRT_SECURE_NO_WARNINGS
 2 #include <stdio.h>
 3 #include<stdlib.h>
 4 #include<time.h>
 5 #define N 80
 6 typedef struct {
 7     char num[20];
 8     char name[20];
 9     char class[40];
10 }STU;
11 STU st[N];
12 void read();
13 void func();
14 int main()
15 {
16     read();
17     func();
18     return 0;
19 }
20 void read() {
21     FILE* fin;
22     fin = fopen("list.txt", "r");
23     if (!fin) {
24         printf("fail to open the file to read\n");
25         return;
26     }
27     int number;
28     int i = 0;
29     while (!feof(fin)) {
30         number = fscanf(fin, "%s%s%s", st[i].num, st[i].name, st[i].class);
31         if (number != 3) {
32             break;
33         }
34         i++;
35     }
36 }
37 void func() {
38     srand(time(NULL));
39     int cnt[5] = { 0 };
40     int sign = 1;
41     for (int i = 0; i < 5; i++) {
42         int t = rand() % 80;
43         for (int j = 0; j++; j < 5) {
44             if (cnt[j] == t) {
45                 sign = 0;
46                 break;
47             }
48         }
49         if (sign) {
50             cnt[i] = t;
51         }
52     }
53 
54     FILE* fp;
55     fp = fopen("result.txt", "w");
56     if (!fp) {
57         printf("fail to open the file to write\n");
58         return;
59     }
60     for (int i = 0; i < 5; i++) {
61         printf("%-20s %-20s %-40s\n", st[cnt[i]].num, st[cnt[i]].name, st[cnt[i]].class);
62         fprintf(fp, "%-20s %-20s %-40s\n", st[cnt[i]].num, st[cnt[i]].name, st[cnt[i]].class);
63     }
64 }

 

 

标签:%-,cnt,int,st,STU,实验,printf,文档
From: https://www.cnblogs.com/Samoyed0721/p/18623754

相关文章

  • 上海人工智能实验室:多模态实时流媒体模型
    ......
  • 实验6 模板类、文件I/O和异常处理
    task4代码:Vector.hpp1#pragmaonce2#include<iostream>34usingnamespacestd;56template<typenameT>7classVector{8public:9Vector(intn);10Vector(intn,Tvalue);11Vector(constVector<T>&......
  • flask毕设研究生实验室综合管理系统(程序+论文)
    本系统(程序+源码+数据库+调试部署+开发环境)带论文文档1万字以上,文末可获取,系统界面在最后面。系统程序文件列表开题报告内容选题背景关于研究生实验室综合管理系统的研究,现有研究主要集中在高校实验室的信息化管理、资源调度及效率提升等方面。尽管这些研究在提升实验室运......
  • 实验7
    task4#include<stdio.h>#include<stdlib.h>intmain(){FILE*fp;charfilename[]="data4.txt";charch;intlines=0;intcharacters=0;fp=fopen(filename,"r");if(fp==NULL){......
  • 秒懂!用文档工具打造电商团队高效协作体系
    电商行业的快速发展,要求团队在高效完成任务的同时,也能快速响应市场需求。在这一过程中,任务交接的重要性被不断放大。而一个好的文档工具,不仅是任务记录的载体,更是驱动团队效率的引擎。一、电商任务交接的本质:从“谁在做”到“怎么做”传统的任务交接往往关注“谁在接手任务”,但......
  • Slate文档编辑器-TS类型扩展与节点类型检查
    Slate文档编辑器-TS类型扩展与节点类型检查在之前我们基于slate实现的文档编辑器探讨了WrapNode数据结构与操作变换,主要是对于嵌套类型的数据结构类型需要关注的Normalize与Transformers,那么接下来我们更专注于文档编辑器的数据结构设计,聊聊基于slate实现的文档编辑器类型系统。......
  • 实验六
    task4Vector.hpp#pragmaonce#ifndefVECTOR_HPP#defineVECTOR_HPP#include<iostream>#include<stdexcept>#include<memory>template<typenameT>classVector{private:std::unique_ptr<T[]>data;intsi......
  • 实验6 模版类、文件I/O和异常处理
    任务4:Vector.hpp:1#pragmaonce2#include<iostream>3usingnamespacestd;45template<typenameT>6classVector{7private:8intsize_;9T*data_;1011public:1213Vector(intn);1415Vector(intn,T......
  • 反馈数据太多?文档管理方法助你高效应对
    在电商行业,高效处理客户反馈是提高客户满意度和保持竞争优势的关键。然而,很多团队在实际操作中却面临着这样的困境:反馈信息分散、处理流程繁琐、责任分工不明。这不仅降低了团队效率,还可能导致客户流失。在这样的背景下,团队文档管理工具如BanliKanban的重要性愈发凸显。它不仅是......
  • 基于SpringBoot+Vue的美发门店管理系统设计与实现毕设(文档+源码)
    目录一、项目介绍二、开发环境三、功能介绍四、核心代码五、效果图六、源码获取:         大家好呀,我是一个混迹在java圈的码农。今天要和大家分享的是一款基于SpringBoot+Vue的美发门店管理系统,项目源码请点击文章末尾联系我哦~目前有各类成品毕设JavaWeb......