首页 > 其他 > 详细

实验7

时间:2019-12-31 20:34:16      阅读:73      评论:0      收藏:0      [点我收藏+]
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
const int N = 10;

// 定义结构体类型struct student,并定义其别名为STU 
typedef struct student {
    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打印考生完整信息: 准考证号,姓名,客观题得分,操作题得分,总分,等级\n");
    output(stu, N); 
    
    system("pause");
    return 0;
} 

// 从文本文件examinee.txt读入考生信息:准考证号,姓名,客观题得分,操作题得分
void input(STU s[], int n) {
    FILE *fin;
    int i;
    fin=fopen("examinee.txt","r") ;
    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;
    fout=fopen("result.txt","w");
    printf("准考证号  姓名  客观题得分  操作题得分  总分  等级\n");
    for (i = 0; i < n; i++) 
    {
    printf("%ld %8s %10.2lf %10.2lf %10.2lf %5s\n", s[i].id, s[i].name, s[i].objective, s[i].subjective, s[i].sum, s[i].level);
    fprintf(fout,"%ld %8s %10.2lf %10.2lf %10.2lf %5s\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) {
    STU temp;
    int i, j;
    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 - i - 1; j++)
            if (s[j].sum < s[j + 1].sum)
            {
                temp = s[j];
                s[j] = s[j + 1];
                s[j + 1] = temp;
            }
    strcpy(s[0].level, "优秀");
    for (i = 1; i <= 4; i++)
        strcpy(s[i].level, "合格");
    for (i = 5; i <= 9; i++)
        strcpy(s[i].level, "不合格");
    // 补足代码
    // ××× 
    
}

技术分享图片

实验7

原文:https://www.cnblogs.com/Mogic/p/12126470.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!