首页 > 其他分享 >实验7

实验7

时间:2023-06-08 20:26:04浏览次数:26  
标签:fp ch int char STU 实验 include

#include <stdio.h>
#include <stdlib.h>
int main()
{
    FILE *fp1,*fp2,*fp3;
    char ch;
    fp1=fopen("data4.txt","r");
  fp2=fp3=fp1; while((ch=getc(fp2))!=EOF) { if(ch!=' '&&ch!='\n'&&ch!='\t') fp3++; } printf("data4.txt中共包含%d个字符数",fp3-fp1); fclose(fp1); return 0; }

#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 t;
    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)
            {
                t=s[j];
                s[j]=s[j+1];
                s[j+1]=t;
            }
        }
    }
    for(i=0;i<n;i++)
    {
        if(i<n*0.1)
            strcpy(s[i].level,"优秀");
        else if(i>=n*0.1&&i<n*0.5)
            strcpy(s[i].level,"合格");
        else
            strcpy(s[i].level,"不合格"); 
    }
    
}

#include <stdio.h>
#include <time.h>
#define N 30
#define M 100
typedef struct{
    char no[N];
    char name[N];
    char classname[N];
}STU;
int main()
{
    int i=0,flag[M]={0},k;
    STU a[M],b[5];
    FILE *fp,*ptr;
    fp=fopen("list.txt","r");
    ptr=fopen("lucky.txt","w");
    if(fp==NULL)
    {
        printf("fail to open\n");
        return 1;
    }
    if(ptr==NULL)
    {
        printf("fail to open\n");
        return 1;
    }
    while(!feof(fp))
    {
        fscanf(fp,"%s%s%s",a[i].no,a[i].name,a[i].classname);
        i++;
    }
    srand((unsigned)time(NULL));
    for(i=0;i<5;)
    {
        k=rand()%80;
        if(flag[k]==0)
            b[i++]=a[k];
        flag[k]=1;
        
        
    }
    for(i=0;i<5;i++)
    {
        printf("%-30s%-30s%-30s\n",b[i].no,b[i].name,b[i].classname);
        fprintf(ptr,"%-30s%-30s%-30s\n",b[i].no,b[i].name,b[i].classname);
    }
    fclose(fp);
    fclose(ptr);
    return 0;
}

 

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

相关文章

  • 实验7
     task4.c1#include<stdio.h>2#include<stdlib.h>3#include<string.h>4#defineN1005intmain()6{7chars;8inti=0;9FILE*fp;1011fp=fopen("data4.txt","r");1213......
  • 五月二十五日实验
    实验一略实验二略实验三略实验四#include<stdio.h>#include<string.h>#defineN100typedefstruct{charnum[10];//学号ints1;//期末成绩ints2;//平时成绩doublesum;//总评charlevel[10];//等级}STU;intfun(STUa[],intn,STUh[]);//......
  • 实验6
    task1_1源代码:1fromturtleimport*23defmove(x,y):4'''画笔移动到坐标(x,y)处'''5penup()6goto(x,y)7pendown()89defdraw(n,size=100):10'''绘制边长为size的正n边形'''......
  • 实验七
    任务三#include<stdio.h>#include<stdlib.h>intmain(){FILE*fp;charch;intchar_count=0;fp=fopen("data4.txt","r");if(fp==NULL){printf("Couldnotopenfiledata4.txt.\n&q......
  • 实验7
    任务4源代码#include<stdio.h>#include<string.h>intmain(){FILE*fp;inti,num=0;chars[7][80];fp=fopen("data4.txt","r");if(fp==NULL){printf("failtoopenfp\n");......
  • 实验6 turtle绘图与python库应用编程体验
    task1-1fromturtleimport*defmove(x,y):penup()goto(x,y)pendown()defdraw(n,size=100):foriinrange(n):fd(size)left(360/n)defmain():pensize(2)pencolor('red')move(-200,0)draw......
  • 实验七
    实验任务4程序代码:#include<stdio.h>#include<string.h>#include<stdlib.h>intmain(){FILE*fp;charstr[100];inti,k=0,flag;while((fp=fopen("data4.txt","r"))==NULL)printf("failtoopen&quo......
  • 实验7
    实验任务4实验代码#include<stdio.h>#include<stdlib.h>#include<string.h>constintN=5,M=100;intmain(){charch[M];intn=0; FILE*fp; fp=fopen("data4.txt","r"); while(!feof(fp))......
  • 实验7
    #11#12classAccount:3def__init__(self,name,account_number,initial_amount=10):4self._name=name5self._card_no=account_number6self._balance=initial_amount78defdeposit(self,amount):9'......
  • 实验七
    classAccount:def__init__(self,name,account_number,initial_amount=10):self._name=nameself._card_no=account_numberself._balance=initial_amountdefdeposit(self,account):self._balance+=accountdefwithdraw(s......