首页 > 其他分享 >实验6

实验6

时间:2022-12-25 20:22:06浏览次数:42  
标签:fp no int lucky STU 实验 include

#include<stdio.h>
#include<stdlib.h>
#pragma warning(disable:4996)
int main() {
    FILE* fp;
    int count = 0;
    fp = fopen("data4.txt", "r");
    if (fp == NULL) {
        printf("fail to open the file");
        return 1;
    }
    char ch;
    while ((ch = fgetc(fp)) != EOF) {
        if (ch != ' ' && ch != '\n' && ch != '\t')
            count++;
    }
    fclose(fp);
    printf("data4.txt中共包含字符数(不计空白符):%d", count);
    return 0;
}

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#pragma warning(disable:4996)
#define N 10

typedef struct {
    long int id;
    char name[20];
    float objective;    // 客观题得分
    float subjective;   // 操作题得分
    float sum;
    char level[10];
} STU;

// 函数声明
void input(STU s[], int n);
void output(STU s[], int n);
void process(STU s[], int n);

int main() {
    STU stu[N];

    printf("从文件读入%d个考生信息: 准考证号,姓名,客观题得分(<=40),操作题得分(<=60)\n", N);
    input(stu, N);

    printf("\n对考生信息进行处理: 计算总分,确定等级\n");
    process(stu, N);

    printf("\n打印考生完整信息, 并保存到文件中");
    output(stu, N);

    return 0;
}

// 从文本文件examinee.txt读入考生信息:准考证号,姓名,客观题得分,操作题得分
void input(STU s[], int n) {
    int i;
    FILE* fin;

    fin = fopen("examinee.txt", "r");
    if (fin == NULL) {
        printf("fail to open file\n");
        exit(0);
    }

    while (!feof(fin)) {
        for (i = 0; i < n; i++)
            fscanf(fin, "%ld %s %f %f", &s[i].id, s[i].name, &s[i].objective, &s[i].subjective);
    }

    fclose(fin);
}

// 输出考生完整信息: 准考证号,姓名,客观题得分,操作题得分,总分,等级
// 不仅输出到屏幕上,还写到文本文件result.txt中
void output(STU s[], int n) {
    FILE* fout;
    int i;

    // 输出到屏幕
    printf("\n");
    printf("准考证号\t姓名\t客观题得分\t操作题得分\t总分\t\t等级\n");
    for (i = 0; i < n; i++)
        printf("%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].level);

    // 保存到文件 
    fout = fopen("result.txt", "w");
    if (!fout) {
        printf("fail to open or create result.txt\n");
        exit(0);
    }

    fprintf(fout, "准考证号\t\t姓名\t客观题得分\t操作题得分\t总分\t\t等级\n");

    for (i = 0; i < n; i++)
        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].level);

    fclose(fout);
}

// 对考生信息进行处理:计算总分,排序,确定等级
void process(STU s[], int n) {
    int i, j;
    STU t;
    for (i = 0; i < n; i++)
        s[i].sum = s[i].objective + s[i].subjective;
    for (j = 0; j < n; j++)
        for (i = 0; i < n - j - 1; i++)
        {
            if (s[i].sum < s[i + 1].sum)
            {
                t = s[i + 1];
                s[i + 1] = s[i];
                s[i] = t;
            }
        }
    for (i = 0; i < n; i++)
    {
        if (i < 0.1 * (n - 1))
            strcpy(s[i].level, "优秀");
        else if (i >= 0.1 * (n - 1) && i < 0.5 * (n - 1))
            strcpy(s[i].level, "合格");
        else if (i >= 0.5 * (n - 1))
            strcpy(s[i].level, "不合格");
    }
}

#include<stdio.h>
#include<string.h>
#include<time.h>
#pragma warning(disable:4996)

typedef struct {
    long int no;
    char name[20];
    char class[100];
}STU;
int main() {
        int i, j;
        STU x[80];
        STU lucky[5];
        FILE* fp;
        fp = fopen("list.txt", "r");

        if (fp == NULL)
        {
            printf("fail to open file\n");
            return 1;
        }

        while (!feof(fp))
        {
            for (i = 0; i < 80; i++)
                fscanf(fp, "%ld%s%s", &x[i].no, x[i].name, x[i].class);
        }
        fclose(fp);

        FILE* fp2;

        fp2 = fopen("lucky.txt", "w");
        if (fp2 == NULL)
        {
            printf("fail to open file\n");
            return 1;
        }

        srand((unsigned)time(NULL));
        for (i = 0; i < 5; i++)
            lucky[i].no = 204942000 + rand() % 81;

        for (i = 0; i < 5; i++)
        {
            for (j = 0; j < 80; j++)
            {
                if (lucky[i].no == x[j].no)
                    lucky[i] = x[j];
            }
        }

        for (i = 0; i < 5; ++i)
        {
            fprintf(fp2, "%ld\t%s\t%s\n", lucky[i].no, lucky[i].name, lucky[i].class);
            printf("%ld\t%s\t%s\n", lucky[i].no, lucky[i].name, lucky[i].class);
        }

        fclose(fp2);

        return 0;
    }

 

标签:fp,no,int,lucky,STU,实验,include
From: https://www.cnblogs.com/king518/p/17004520.html

相关文章

  • 网页大作业——上海美食8页网页实验报告
    一、实验目的和要求1.了解HTML文档结构,学习如何编写HTML文档;;2.初步掌握基本标记的使用;练习使用HTML中最基本的一些标签,如定义标题、段落及标记文字的显示格式、背景图片......
  • 实验八-Web部署
    一、部署过程1.安装华为云openEuler2.配置openEuler在华为云openEuler安装后,没有配置yum源,我们通过重新配置。增加下面内容:3.安装LAMP安装Apache,开启Apache服务,设......
  • 实验6
    task4#include<stdio.h>#include<stdlib.h>intmain(){FILE*fp;intcount=0;fp=fopen("data4.txt","r");if(fp==NULL){printf("failtoopenthefile");return......
  • 实验6 文件应用编程
    1#define_CRT_SECURE_NO_WARNINGS2#include<stdio.h>3intmain()4{5intnum=0;6FILE*fp;7charch;8if((fp=fopen("data4.tx......
  • 实验八
    部署过程配置华为云服务器  安装程序dnfinstallhttpdmysql-serverphpphp-mysqlndphp-fpm    启用Apachesystemctlstarthttpd.se......
  • 实验七-缓冲区溢出
    一、实验指导书内容1.实验准备系统用户名shiyanlou实验楼提供的是64位Ubuntulinux,而本次实验为了方便观察汇编语句,我们需要在32位环境下作操作,因此实验之前需要......
  • 实验六
    #include<stdio.h>#include<stdlib.h>intmain(){FILE*fp;charal;intcount=0;fp=fopen("C:\\data4.txt","r");if(fp==NULL){prin......
  • 实验八
    实验准备弹性云服务器购买实验过程遇到的问题MySQL退出时不知道单纯按了q结果不行,后来知道有俩种方式1.QUIT2.\q视频中进行网页操作卡住。......
  • 实验八-Web部署
    部署过程首先进入华为云中购买的弹性云服务器输入以下命令安装Apache 安装LAMP开启Apache服务并设置开机自启动,同时关闭防火墙及其自启动 然后安装mariadb(这个......
  • 实验任务5
    Task1#include<stdio.h>#include<string.h>#defineN3         //运行程序输入测试时,可以把这个数组改小一些输入测试 typedefstructstudent{ ......