首页 > 其他分享 >实验六

实验六

时间:2022-12-24 19:11:25浏览次数:31  
标签:fp int void STU 实验 printf include

实验任务四

#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
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;
}

实验任务五

#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;
}
// 从文本文件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(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 (i = 0; i < 0.1 * n; i++)
        strcpy(s[i].level, "优秀");
        for (; i < 0.5 * n; i++)
            strcpy(s[i].level, "合格");
        for (; i < n; i++)
            strcpy(s[i].level, "不合格");

}


    
        

 

实验任务六

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include<time.h>
#define N 80
#define M 5
typedef struct {
    long int id;
    char name[20];
    char class[30];
} STU;
// 函数声明
void input(STU s[], int n);
void output(STU t[], int m);
int main() {
    STU stu[N];
    input( stu, N);
    int number, i, j = 0;
    STU lck[M];
    srand(time(0));
    for (i = 0; i < M; i++) {
        number = rand() % 80;
        lck[j] = stu[number];
        j++;
    }
    output(lck, M);
    return 0;
}

void input(STU s[], int n) {
    FILE* fp;
    int i, j;
    fp = fopen("list.txt", "r");
    if (fp == NULL)
    {
        printf("fail to open file\n");
        exit(0);
    }
    for (i = 0; i < n; i++)
        fscanf(fp, "%ld %s %s", &s[i].id, s[i].name, s[i].class);
    fclose(fp);
}

void output(STU t[], int m) 
{
    int i, j = 0;
    for (i = 0; i < m; i++)
        printf("%ld\t%s\t%s\n", t[i].id, t[i].name, t[i].class);
    FILE* fout;
    fout = fopen("lucky.txt", "w");
    if (fout == NULL)
    {
        printf("fail to open or create result.txt\n");
        exit(0);
    }
    for (i = 0; i < m; i++)
        fprintf(fout,"%ld\t\t%s\t%s\n", t[i].id, t[i].name, t[i].class);
    fclose(fout);

}

    
        

 

 

标签:fp,int,void,STU,实验,printf,include
From: https://www.cnblogs.com/tyl0131/p/17003079.html

相关文章

  • 实验八-web部署-20221308刘志伟
    实验步骤在华为云openEuler安装后,没有配置yum源,我们通过重新配置。输入命令以切换到rpos目录下cd/etc/yum.repos.d输入命令更换yum源viopenEuler_x86_64.repo增加......
  • 实验6
    #define_CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>intmain(){intcount=0;FILE*fp;fp=fopen("C:\\Users\\yuyee\\Des......
  • 实验6 文件应用编程
    实验4程序源码1#define_CRT_SECURE_NO_WARNINGS12#include<stdio.h>34intmain(){5FILE*fp;6fp=fopen("data4.txt","r");7if......
  • 实验6
    //将图书信息写入文本文件data1.txt#define_CRT_SECURE_NO_WARNINGS#include<stdio.h>#defineN7#defineM80typedefstruct{charname[M];//书名......
  • 实验5
    #define_CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<string.h>#defineN3typedefstructstudent{intid;charname[20];charsubject[20......
  • 实验六
    实验任务4:#define_CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>intmain(){FILE*fp;charch;if((fp=fopen("D:\\我的文件\\桌面......
  • 实验六
    #include<stdio.h>#include<string.h>#include<stdlib.h>#defineN10typedefstruct{longintid;charname[20];floatobjective;//客......
  • 实验6
    #define_CRT_SECURE_NO_WARNINGS#include<stdio.h>intmain(){charch;FILE*fp;fp=fopen("C:\\Users\\Mr.Yang\\Desktop\\c语言作业\\实验4\\dat......
  • 实验6
    task4#include<stdio.h>#include<stdlib.h>intmain(){FILE*fp;intcount=0;fp=fopen("data4.txt","r");if(fp==NULL){printf("failtoopent......
  • 实验6
    4.实验任务4:文件简单应用#define_CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>intmain(){FILE*fp;charch;intcount=0;fp......