首页 > 其他 > 详细

实验七

时间:2019-12-30 13:55:31      阅读:89      评论:0      收藏:0      [点我收藏+]

技术分享图片

结果仍然正确

二进制文件直接打开是杂乱的。而文本文件不会。

#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;
    
    
    fin = fopen("file4.dat", "r+");
    if( !fin ) {  // 如果打开失败,则输出错误提示信息,然后退出程序 
        printf("fail to open file4.dat\n");
        exit(0);
    }

    
    for(i=0;i<N;i++){
    if(fread(&st[i],sizeof(struct student),1,fin) == 1) 
     printf("%-6d%-10s%3d\n", st[i].num, st[i].name, st[i].score); 
    } 
    fclose(fin);
    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 *fin;int i=0;
    fin=fopen("examinee.txt","r");
    if(!fin){
    
    printf("not find the file");
    exit(0);
}    
for(i=0; i<N; i++)
fscanf(fin, "%d %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 *p;int i;
    p=fopen("result.txt","w");
        
    if(!p){
    
    printf("not find the file");
    exit(0);
}    
printf("准考证号 姓名 客观题得分 操作题得分 总分 等级\n");fprintf(p,"准考证号 姓名 客观题得分 操作题得分 总分 等级\n");

for(i=0; i<N; i++){  printf("%d %8s %8.2f %8.2f %10.2f %s\n", s[i].id, s[i].name, s[i].objective,s[i].subjective, s[i].sum,s[i].level);

fprintf(p, "%d %8s %8.2f %8.2f %10.2f %s\n", s[i].id, s[i].name, s[i].objective,s[i].subjective, s[i].sum,s[i].level); 


}

fclose(p);
}

// 对考生信息进行处理:计算总分,排序,确定等级
void process(STU s[], int n) {
    // 补足代码
    // ××× 
    int i,k,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++){
k=i;
for(j=i+1;j<n;j++)
if(s[j].sum>=s[k].sum)
k=j;
if(k!=i){

t=s[i];
s[i]=s[k];
s[k]=t;}
    
}
for(i=0;i<n;i++)
if(i==0)
 strcpy(s[i].level,"优秀"); 
 else if(i>0&&i<5) 
 strcpy(s[i].level,"合格"); 
 else if(i>4&&i<10)
 strcpy(s[i].level,"不合格"); 
 
}

技术分享图片

好像文件里就只有一个霉霉,不知道怎么肥事

实验七

原文:https://www.cnblogs.com/kqzs/p/12119072.html

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