首页 > 其他分享 >实验6

实验6

时间:2022-12-28 19:56:16浏览次数:33  
标签:count fp ch int char 实验 include

task1

//task 4#include<stdio.h>
#define _CRT_SECURE_NO_WARNINGS
#include<stdlib.h>
int main(){
    char ch;
    int count=0;
    FILE *fp;
    fp=fopen("data4.txt","r");
    if(fp==NULL)
    {
        printf("D://fail to open file");
        return 1;
    }
    ch=fgetc(fp);
    while(ch!=EOF)
    {
    
        if(ch!=' '&&ch!='\n')
        count++;
         ch=fgetc(fp);
    }
    printf("data4.txt中共包含字符数(不计空白符): %d",count);
    fclose(fp);
    system("pause");
    return 0;
}

//task 5
#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("D://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 t;
   for(i=0;i<n;i++)
   {
       s[i].sum=s[i].objective+s[i].subjective;
   } 
   
   
    for(i=0;i<n-1;i++)
     {
    for(j=0;j<n-1-i;j++)
      if(s[j].sum<s[j+1].sum)
       {
          t=s[j];
          s[j]=s[j+1];
          s[j+1]=t;
       }
     } 
         
    
    
    for(int 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,"不合格");
      
       
}

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

typedef struct
{
    long int no;
    char name[20];
    char cla[100];
}stu;

int main()
{
    FILE *fp1;
    fp1 = fopen("list.txt","r");
    
    stu a[80];
    int i = 0;
    while(!feof(fp1))
    {
        fscanf(fp1,"%ld %s %s",&a[i].no,a[i].name,a[i].cla);
        i++;
    }
    fclose(fp1);
    
    time_t T;
    T = time(NULL);
    struct tm *tmTime;
    tmTime = localtime(&T);
    char* format = "%Y%m%d";
    char strTime[100];
    strftime(strTime, sizeof(strTime), format, tmTime);
    strcat(strTime,".txt");
    
    FILE *fp2;
    fp2 = fopen(strTime,"w");
    srand((unsigned int)time(0));
    int count,b[5],repeat = 0; 
    for(int i = 0;i < 5;i++)
    {
        count = rand() % 80;
        
        for(int k = 0;k < i;k++)
            if(b[k] == count) repeat = 1;
        if(repeat) 
        {
            i--; 
            repeat = 0;
            continue;
        }    
        
        b[i] = count;
        fprintf(fp2,"%ld %s %s\n",a[count].no,a[count].name,a[count].cla);
        printf("%ld %s %s\n",a[count].no,a[count].name,a[count].cla);
        
    }
    fclose(fp2);
    
    return 0;
}

 

标签:count,fp,ch,int,char,实验,include
From: https://www.cnblogs.com/liangchenxi/p/17011146.html

相关文章

  • 实验任务6
    实验1.1#include<stdio.h>#defineN7#defineM80typedefstruct{charname[M];charauthor[M];}Book;intmain(){Bookx[N]={{"《雕塑......
  • 实验5
    task1.#include<stdio.h>#include<string.h>#defineN100typedefstruct{charnum[10];//学号ints1;//期末成绩ints2......
  • 亚马逊云科技 Build On 2022 - AIot 第二季物联网专场实验心得
    亚马逊云科技BuildOn2022-AIot第二季物联网专场实验心得大家好BuildOn是什么本次BuildOn主题介绍参与本场活动您能学到什么本场实验所用到的AWS服务实验部分1.线上......
  • 【新知实验室 TRTC&IM】实时互动课堂最佳实践
    【新知实验室TRTC&IM】实时互动课堂最佳实践​​一、新知实验室-TRTC腾讯云音视频产品体验官计划​​​​活动简介​​​​二、产品简介​​​​TRTC​​​​IM​​​​三......
  • 实验六
    1#include<stdio.h>2intmain()3{4FILE*fp;5intcount=0;6charch;7fp=fopen("date4.txt","r");8if(fp==NULL)9......
  • python实验报告(第11章)
    实验11:使用Python操作数据库一、实验目的和要求1、学会数据库编程接口;2、学会使用SQLite;3、学会使用MySQL。二、实验环境软件版本:Python3.1064_bit三、实验过程......
  • python实验报告(第12章)
    实验12:GUI界面编程一、实验目的和要求1、学会应用常用控件;2、学会使用BoxSizer布局;3、学会事件处理。二、实验环境软件版本:Python3.1064_bit三、实验过程1、实......
  • 实验五
     #include<stdio.h>#include<stdlib.h>#include<string.h>#defineN5typedefstructstudent{charname[10];intnum;intmaths;intcomputer;intenglish......
  • 实验六
     #include<stdio.h>#include<stdlib.h>intmain(){FILE*fp;charal;intcount=0;fp=fopen("C:\\data4.txt","r");if(fp==NULL){p......
  • 《DFZU2EG_4EV MPSoc之FPGA开发指南》第三十四章 双目OV5640摄像头RGB-LCD显示实验​
    双目OV5640摄像头RGB-LCD显示实验​双目摄像头是在一个模组上集成了两个摄像头,实现双通道图像采集的功能。双目摄像头一般应用于安防监控、立体视觉测距、三维重建等领域。......