码迷,mamicode.com
首页 > 其他好文 > 详细

实验七

时间:2020-01-01 11:45:20      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:out   图片   std   总结   roc   null   准考证   优秀   file   

#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");
    if(fin==NULL){
    printf("mistake\n");
    exit(0);
    } 
    
    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+");
    if(fout==NULL){
    printf("mistake\n");
    exit(0);
    }
    
    
    for(i=0;i<n;i++){
    printf("%ld %s %f %f %f %s\n",s[i].id,s[i].name,s[i].objective,s[i].subjective,s[i].sum,s[i].level); 
    fprintf(fout,"%ld %s %f %f %f %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 temp;
    
    for(i=0;i<n;i++)
    s[i].sum = s[i].objective + s[i].subjective;

    for(i=0;i<n;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;
    }
    
    for(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,"不及格");
    }
    
}

  

技术图片

 

实验总结:二进制文件和文本文件有区别,二进制需要特别的解码器。

实验七

标签:out   图片   std   总结   roc   null   准考证   优秀   file   

原文地址:https://www.cnblogs.com/luoshuaioffshore/p/12128256.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!