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

实验7

时间:2019-12-31 00:51:02      阅读:79      评论:0      收藏:0      [点我收藏+]

标签:for   fine   txt   amp   min   提示信息   tput   subject   const   

技术图片

结果正确

 

 

 

文本文件存储的是常规字符串,文本文件可以使用字处理软件如gedit、记事本进行编辑。

二进制文件把对象内容以字节串进行存储,需要使用专门的软件进行解码后读取、显示、修改或执行。

 

 

 

 

 

 

 

#include <stdio.h>
#include <stdlib.h>
#define N 10
// 定义一个结构体类型STU
typedef struct student {
    int num;
    char name[20];
    int score;
}STU;

int main() {
    FILE *fin;
    STU st[N];
    int i;
   
    // 以只读文本方式打开二进制文件file4.dat
    fin = fopen("file4.dat", "rb");
    if( !fin ) {  // 如果打开失败,则输出错误提示信息,然后退出程序
        printf("fail to open file4.dat\n");
        exit(0);
    }
   
    // 从fin指向的数据文件file4.dat中读取数据到结构体数组st
    for(i=0; i<N; i++)
        fread(&st,sizeof(STU
),N,fin);
   
    // 将数组st中数据输出到屏幕
    for(i=0; i<N; i++)
        printf("%-6d%-10s%3d\n", st[i].num, st[i].name, st[i].score);   
    return 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 *fp1;
    int i;
    fp1=fopen("examinee.txt","r");
    if(!fp1)
    {
        printf("fail to open examinee.txt\n");
        exit(0);
    }
    for(i=0;i<n;i++)
        fscanf(fp1, "%ld %s %f %f",&s[i].id,&s[i].name,&s[i].objective,&s[i].subjective);
        
        fclose(fp1);
}
// 输出考生完整信息: 准考证号,姓名,客观题得分,操作题得分,总分,等级
// 不仅输出到屏幕上,还写到文本文件result.txt中
void output(STU s[], int n) {
 // 补足代码
 // ×××
 int i;
    FILE *fp2;
   
    fp2=fopen("result.txt","w");
    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(fp2,"%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(fp2);
}
// 对考生信息进行处理:计算总分,排序,确定等级
void process(STU s[], int n) {
 // 补足代码
 // ×××
 int i,j,k;
    STU m;
    for(i=0;i<n;i++)
    s[i].sum=s[i].objective+s[i].subjective;
   
   
    for(k=0;k<n-1;k++)
    {
        for(j=0;j<n-1-k;j++)
        if(s[j].sum<s[j+1].sum)
        {
            m = s[j];
            s[j] = s[j+1];
            s[j+1] = m;
        }
    }
   
    for(i=0;i<n;i++)
    {
        switch(i)
        {
            case 0:strcpy(s[i].level,"优秀");break;
            case 1:
            case 2:
            case 3:
            case 4:strcpy(s[i].level,"合格");break;
            case 5:
            case 6:
            case 7:
            case 8:
            case 9:strcpy(s[i].level,"不合格");break;
        }
    }
 
}

 

 

 

 

 

技术图片

实验7

标签:for   fine   txt   amp   min   提示信息   tput   subject   const   

原文地址:https://www.cnblogs.com/ws6666/p/12122140.html

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