首页 > 其他分享 >实验6

实验6

时间:2022-12-26 15:33:49浏览次数:28  
标签:fp ch int char STU 实验 include

task4

#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
int main() {
    char ch;
    int count = 0;
    FILE *fp;
    fp = fopen("data4.txt", "r");
    if (fp == NULL)
    {
        perror("fopen");
        exit(0);
    }
    ch = fgetc(fp);
    while (ch != EOF)
    {

        if (ch != ' ' && ch != '\n')
            count++;
        ch = fgetc(fp);
    }
    printf("data4.txt中共包含字符数(不计空白符): %d\n", count);
    fclose(fp);
    system("pause");
    return 0;
}

  

 

task5

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

#define N 10

typedef struct {
    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打印考生完整信息, 并保存到文件中");
    output(stu, N);

    return 0;
}

// 从文本文件examinee.txt读入考生信息:准考证号,姓名,客观题得分,操作题得分
void input(STU s[], int n) {
    int i;
    FILE *fin;

    fin = fopen("examinee.txt", "r");
    if (fin == NULL) {
        printf("fail to open file\n");
        exit(0);
    }

    while (!feof(fin)) {
        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;
    
    // 输出到屏幕
    printf("\n");
    printf("准考证号\t姓名\t客观题得分\t操作题得分\t总分\t\t等级\n");
    for (i = 0; i < n; i++)
        printf("%ld\t\t%s\t%.2f\t\t%.2f\t\t%.2f\t\t%s\n", s[i].id, s[i].name, s[i].objective, s[i].subjective, s[i].sum, s[i].level);
    
    // 保存到文件 
    fout = fopen("result.txt", "w");
    if (!fout) {
        printf("fail to open or create result.txt\n");
        exit(0);
    }
    
    fprintf(fout, "准考证号\t\t姓名\t客观题得分\t操作题得分\t总分\t\t等级\n");

    for (i = 0; i < n; i++)
        fprintf(fout, "%ld\t\t%s\t%.2f\t\t%.2f\t\t%.2f\t\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 m;
    for(i=0;i<n;++i){
        s[i].sum=s[i].objective+s[i].subjective;
    }
    for(i=0;i<n-1;++i){
        for(j=n-1;j>i;--j){
            if(s[j].sum>s[j-1].sum){
                m=s[j];
                s[j]=s[j-1];
                s[j-1]=m;
                
            }
        }
    }
    int k,a;
    k=n*0.1;
    a=n*0.5;
    for(i=0;i<k;++i)
    strcpy(s[i].level,"优秀");
    for(i=k;i<a;++i)
    strcpy(s[i].level,"合格");
    for(i=a;i<n;++i)
    strcpy(s[i].level,"不合格");
    
}

  

 

task6

#include<stdio.h>
#include<time.h>
#include<stdlib.h>
typedef struct {
    long no;
    char name[20];
    char grade[20];
}STU;
int main(){
    FILE *fp,*fp1;
    STU s[80];
    fp1=fopen("lucky.txt","w");
    fp=fopen("list.txt","r");
    if(fp==NULL){
        printf("fail to open file");
        return 1;
    }
    if(fp1==NULL){
        printf("fail to open file");
        return 1;
    }
    int i;
    for(i=0;i<80;i++){
    fscanf(fp,"%ld%s%s",&s[i].no,s[i].name,s[i].grade);
    }
    fclose(fp);
    srand(time(NULL));                 
    STU c[5];
    int j,k;
    for(i=0;i<5;i++){
    c[i].no=204942000+(rand()%80+1);
}     
    for(j=0;j<5;j++){
        for(k=0;k<80;k++){
            if(s[k].no==c[j].no)
            {  
            c[j]=s[k];
            }                           
        }
    }
    for(i=0;i<5;i++){
    printf("%ld\t%s\t%s\n",c[i].no,c[i].name,c[i].grade);
    fprintf(fp1,"%ld\t%s\t%s\n",c[i].no,c[i].name,c[i].grade);
    } 
    fclose(fp1); 
    return 0;
}

  

 

标签:fp,ch,int,char,STU,实验,include
From: https://www.cnblogs.com/lk12138/p/17005918.html

相关文章

  • 实验6
    #define_CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>intmain(){FILE*fp;intcount=0;fp=fopen("data4.txt","r");if(f......
  • 实验6
        任务4#include<stdio.h>intmain(){charch;FILE*fp;fp=fopen("data4.txt","r");if(fp==NULL){printf("failtoopen......
  • 实验五
    task3.#include<stdio.h>#include<string.h>#include<stdlib.h>#defineN100typedefstruct{ charnum[10];//学号 ints1;//期末成绩 ints2;//平时成......
  • 《DFZU2EG_4EV MPSoc之FPGA开发指南》第三十二章 OV5640摄像头RGB-LCD显示实验​
    OV5640摄像头RGB-LCD显示实验OV5640是OmniVision(豪威科技)公司生产的CMOS图像传感器,该传感器分辨率高、采集速率快,图像处理性能强,主要应用在手机、数码相机、电脑多媒体等领......
  • 实验5
    实验5task3#include<stdio.h>#include<string.h>#include<stdlib.h>#defineN100typedefstruct{charnum[10];//学号ints1;......
  • 实验八-web部署
    实验内容1.配置openEuler2.安装LAMP3.安装部署wordpress实验步骤购买云服务器本文环境基于华为云的弹性云服务器ECS:CPU架构:选择鲲鹏通用计算增强型操作系统选择......
  • 关于linux下磁盘相关实验
    实验要求:创建一个至少有两个PV组成的大小为20G的名为testvg的VG,要求PE大小为16M,而后在卷组中创建大小为5G的逻辑卷testlv;挂载至/users目录新建用户archlinux,要求其......
  • 第八次实验--Web部署
    实验相关配置弹性云服务器ECS远程访问推荐使用MobaXterm.LAMP是指一组通常一起使用来运行动态网站或者服务器的自由软件名称首字母缩写:Linux,操作系统,openEuler就是......
  • 实验八-Web部署
    参考https://www.cnblogs.com/rocedu/p/16929895.html和附件视频,基于LAMP部署wordpress,提交自己部署过程博客1.遇到的问题和解决过程2.对实验的建议配置openEuler在......
  • 实验六
    #include<stdio.h>#include<stdlib.h>intmain(){FILE*fp;charal;intcount=0;fp=fopen("C:\\date4.txt","r");if(fp==NULL){prin......