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

clearlove7777777

时间:2019-12-29 18:35:53      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:读取数据   roc   long   函数声明   fine   文本   屏幕   str   mic   

// 从文本文件file1.dat中读取数据,找出最高分和最低分学生信息,并输出在屏幕上
#include <stdio.h> 
#include <stdlib.h>

#define N 10

// 定义一个结构体类型STU 
typedef struct student {
    int num;
    char name[20];
    int score;
}STU;

int main() {
    STU st, stmax, stmin;
    int i;
    FILE *fp;
    
    // 以只读文本方式打开文件file1.dat 
    fp = fopen("file1.dat", "r");
    if( !fp ) {  // 如果打开失败,则输出错误提示信息,然后退出程序 
        printf("fail to open file1.dat\n");
        exit(0);
    }
    
    stmax.score = 0;    // 先假定最高分是0,后面如发现比当前最高分还高的分数,就更新最高分 
    stmin.score = 100;    // 先假定最低分是100分,后面如发现比当前最低分更低的分数,就更新最低分 
    
    while(!feof(fp)) {
        fscanf(fp, "%d %s %d", &st.num, st.name, &st.score);  // 从fp指定的文件中格式化读取一个学生信息
        
        if(st.score > stmax.score)
            stmax = st;
        else if(st.score < stmin.score)
            stmin = st; 
    } 
    
    fclose(fp);
    
    printf("最高分学生信息: %5d%15s%5d\n", stmax.num, stmax.name, stmax.score);
    printf("最低分学生信息: %5d%15s%5d\n", stmin.num, stmin.name, stmin.score);

    system("pause");
    return 0;
}

// 这是《C语言程序设计教程学习指导》「2.10 文件」中的实验,细微处做了微调
// 这个源代码没有考虑多个高分或多个低分的情形。 
 

技术图片

 

 

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

// 从文本文件读入考生信息:准考证号,姓名,客观题得分,操作题得分
void input(STU s[], int n) {
    // 补足代码
    // ×××
    FILE *fin;
    fin = fopen("examinee.txt", "r");
    if( !fin ) {   
        printf("fail to open examinee.txt\n");
        exit(0);
    }
    for(int i=0; i<n; i++) {
    
        fscanf(fin, "%d %s %f %f\n", &s[i].id, s[i].name, &s[i].objective, &s[i].subjective);
    }
    fclose(fin); 
}

// 输出考生完整信息: 准考证号,姓名,客观题得分,操作题得分,总分,等级
// 不仅输出到屏幕上,还写到文本文件中 
void output(STU s[], int n) {
    // 补足代码
    // ×××
    FILE  *fout; 
    fout = fopen("result.txt", "w");
    if( !fout ) {  
        printf("fail to open result.txt\n");
        exit(0);
    }
    for(int i=0; i<n; i++) {
    
        printf("%d\t %s\t %.2f\t %.2f\t %.2f\t %s\n", s[i].id, s[i].name, s[i].objective, s[i].subjective, s[i].sum, s[i].level);
        fprintf(fout, "%d\t %s\t %.2f\t %.2f\t %.2f\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 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-1-i;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,"不合格"); 
         } 
}

技术图片

clearlove7777777

标签:读取数据   roc   long   函数声明   fine   文本   屏幕   str   mic   

原文地址:https://www.cnblogs.com/erii/p/12115727.html

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