首页 > 编程语言 >实验六 文件应用编程

实验六 文件应用编程

时间:2022-12-24 12:33:10浏览次数:33  
标签:fp 文件 no int 编程 lucky STU 实验 include

实验任务4

#define _CRT_SECURE_NO_WARNINGS
#include<stdlib.h>
#include<stdio.h>
int main() {
    char ch;
    int count = 0;
    FILE* fp;
    fp = fopen("data4.txt", "r");
    if (fp == NULL)
    {
        printf("F://fail to open file");
        return 1;
    }
    ch = fgetc(fp);
    while (ch != EOF)
    {

        if (ch != ' ' && ch != '\n')
            count++;
        ch = fgetc(fp);
    }
    printf("data4.txt中共包含字符数(不计空白符): %d", count);
    fclose(fp);
    system("pause");
    return 0;
}

  

 

实验任务5

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#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;
}

void input(STU s[], int n) {
    int i;
    FILE* fin;

    fin = fopen("F://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);
}

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 (i = 0; i < n - 1; i++)
    {
        for (j = 0; j < n - 1 - i; j++)
            if (s[j].sum < s[j + 1].sum)
            {
                t = s[j];
                s[j] = s[j + 1];
                s[j + 1] = t;
            }
    }
    for (int i = 0; i < n; i++)
        if (i + 1 <= n * 0.1)
            strcpy(s[i].level, "优秀");
        else if (i + 1 >= n * 0.1 && i + 1 <= n * 0.5)
            strcpy(s[i].level, "合格");
        else
            strcpy(s[i].level, "不合格");
}

  

 

实验任务6

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h> 
#include <stdlib.h> 
#include <time.h>
#include <string.h>

typedef struct
{
    long int no;
    char name[20];
    char clas[100];
} STU;


int main()
{
    int i, j;
    STU x[80];
    STU lucky[5];
    FILE* fp;
    fp = fopen("F://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].clas);
    }
    fclose(fp);

    FILE* fp2;

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

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

    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].clas);
        printf("%ld\t%s\t%s\n", lucky[i].no, lucky[i].name, lucky[i].clas);
    }

    fclose(fp2);

    return 0;
}

  

 

标签:fp,文件,no,int,编程,lucky,STU,实验,include
From: https://www.cnblogs.com/ybc-MEGALOVANIA/p/17002747.html

相关文章

  • 4.面向对象编程(上)
    学习面向对象内容的三条主线Java类及类的成员面向对象的三大特征其它关键字一、面向过程与面向对象面向过程(POP)与面向对象(OOP)面向过程,强调的是功能行为,以函数为最小......
  • 5.面向对象编程(中)
    一、面向对象特征之二:继承性(inheritance)为什么要有继承?多个类中存在相同属性和行为时,将这些内容抽取到单独一个类中,那么多个类无需再定义这些属性和行为,只要继承那个类......
  • 简单介绍python中读取txt文件时split()函数的妙用
    这篇文章主要介绍了python中读取txt文件时split()函数的妙用,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教不知道大家有没有过需要从txt文......
  • 实验五 结构体应用编程
    实验任务1#define_CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<string.h>#defineN3//运行程序输入测试时,可以把这个数组改小一些输入测试typ......
  • 实验5
    #include<stdio.h>#include<string.h>#defineN100typedefstruct{charnum[10];//学号ints1;//期末成绩ints2;......
  • 《DFZU2EG_4EV MPSoc之FPGA开发指南》 第三十章 基于OV5640的PL以太网视频传输实验​
    基于OV5640的PL以太网视频传输实验​OV5640是OmniVision(豪威科技)公司生产的CMOS图像传感器。OV5640支持更高的分辨率、采集速率,具有更高的图像处理性能,主要应用在手机、数码......
  • 《DFZU2EG_4EV MPSoc之FPGA开发指南》第三十一章 DDR4读写测试实验​
    DDR4读写测试实验​DDR4SDRAM(Double-Data-RateFourthGenerationSynchronousDynamicRandomAccessMemory,简称为DDR4SDRAM),是一种高速动态随机存取存储器,它属于SDRAM家......
  • pom.xml文件详解
    <projectxmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0h......
  • linux 中 {} 组合%实现截取文件名
     001、[root@pc1test]#ls[root@pc1test]#var=mnopqrst##测试变量[root@pc1test]#echo$var##打印出该变量mnopqrst[root@pc1test]#echo${......
  • C++读写文本文件
    std::stringreadText(std::string&filename){std::stringshaderCodeStr("");std::ifstreamshaderFile;shaderFile.exceptions(std::ifstream::failb......