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

实验6 文件应用编程

时间:2022-12-30 01:11:25浏览次数:43  
标签:fp 文件 no int 编程 lucky STU 实验 include

实验任务4

#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
int main() {
    char ch;
    int count = 0;
    FILE* fp;
    fp = fopen("data4.txt", "r");
    if (fp == NULL)
    {
        perror("fopen");
        exit(0);
    }
    ch = fgetc(fp);
    while (ch != EOF)
    {

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

 

 

实验任务5

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

    system("pause");
    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,"优秀");
        if(i>=0.1*(n-1)&&i<0.5*(n-1))
        strcpy(s[i].level,"合格");
        if(i>=0.5*(n-1))
        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/jody0-0/p/17013931.html

相关文章

  • 3、聚合项目并修改gitignore文件
    当我们在一个总项目中创建了好多模块时,如下我们希望最外层的项目将子项目聚合起来,就可以复制一个pom文件到外面然后修改如下(最外层pom不需要依赖什么,都删除即可,只需添加m......
  • 实验5 结构体应用编程
    实验任务3#include<stdio.h>#include<string.h>#include<stdlib.h>#defineN100typedefstruct{charnum[10];//学号ints1;//期末成绩ints2......
  • 实验5
    #include<stdio.h>#include<stdlib.h>#include<string.h>#defineN5typedefstructstudent{charname[10];intnum;intmaths;intcomputer;intenglish;i......
  • 实验6
    #include<stdio.h>#include<stdlib.h>intmain(){chara[2][100]={"nuist2022-nuist2023","FIFAWorldCup2022"};FILE*fp;inti,n=0;charch;......
  • Selenium40-配置文件
    配置文件配置文件是记录可能会有改动的配置项目的文件提取配置文件的目的是为了使代码更加灵活,对可能经常变动的地方修改更加方便,所以使用配置文件读取配置文件的应......
  • [oeasy]python0035_ 整合shell编程_循环_延迟_清屏
    ​ 整合shell编程回忆上次内容用\r可以让输出位置回到行首原位刷新时间如果想要的是大字符效果需要使用figlet但同时还希望能刷新​编辑这可能......
  • 编程重要的是思维而不是语言
    编程重要的是思维而不是语言。编程重要的是思维而不是语言。就好比大家中学做几何题的时候,想必都用过辅助线与数学符号语言。那么大家也都知道,在几何题的解答中,重要的并......
  • git 报错的解决办法--强制上传文件
    在idea中重新push自己的项目如何还是不行进行强制上传gitpush-uoriginmaster-f 一、Git操作和报错问题解决1.创建本地仓库2.上传步骤和下载步骤二、报错解决......
  • mv - 移动或改名文件
    mvmovemv[参数]源文件目标文件-i存在同名文件,询问用户是否覆盖(interactive)-f覆盖已有文件,不进行任何提示(force)-b文件存在,覆盖前备份文件(backup)-u源文件比......
  • cp - 复制文件或目录
    cpcopy指令格式:cp [参数] [源文件] [目标文件]-f目标已存在,直接覆盖原文件-i目标已存在,询问是否覆盖-r递归复制文件和目录-b覆盖目标文件时,备份文件-p......