首页 > 其他分享 >实验六

实验六

时间:2022-12-27 22:55:17浏览次数:28  
标签:no int ++ lucky STU 实验 include

#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
int main()
{
    FILE* fp;
    char ch;
    int count=0;
    fp = fopen("E:\\study\\sourse\\data4.txt", "r");
    if (fp == NULL) {
        printf("cannot open the file\n");
        exit(0);
    }
    while (!feof(fp)) {
        ch = fgetc(fp);
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define N 10
typedef struct {
long 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;
}
void input(STU s[], int n) {
FILE* fp;
int i;
fp = fopen("E:\\study\\sourse\\examinee.txt", "r");
if (fp == NULL) {
printf("fail to open the file\n");
exit(0);
}
for (i = 0; i < n; i++) {
fscanf(fp,"%ld %s %f %f", &s[i].id,s[i].name, &s[i].objective,&s[i].subjective);
}
fclose(fp);
}
void output(STU s[], int n) {
FILE* fp;
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);
}
fp = fopen("E:\\study\\sourse\\a.txt", "w");
if (fp == NULL) {
printf("fail to open the file\n");
exit(0);
}
fprintf(fp,"准考证号\t\t姓名\t客观题得分\t操作题得分\t总分\t\t等级\n" );
for (i = 0; i < n; i++) {
fprintf(fp,"%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(fp);
}
void process(STU s[], int n) {
int i,j;
STU t;
double flag1,flag2;
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 - i - 1; j++) {
if (s[j].sum < s[j + 1].sum) {
t = s[j];
s[j] = s[j + 1];
s[j + 1] = t;
}
}
}
flag1 =(0.1 * n);
flag2 = (0.5 * n);
for (i = 0; i <= flag1-1; i++) {
strcpy(s[i].level, "优秀");
}
for (i = flag1 ; i <= flag2-1; i++) {
strcpy(s[i].level, "合格");
}
for (i = flag2; i < n; i++) {
strcpy(s[i].level, "不合格");
}
}

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include<time.h>
typedef struct {
    long int no;
    char name[20];
    char grade[20];
} STU;

int main() {
    STU stu[80];
    int i, j;
    FILE* fin;

    fin = fopen("E:sourse//six//list.txt", "r");
    if (fin == NULL) {
        printf("fail to open file\n");
        exit(0);
    }
    while (!feof(fin)) {
        for (i = 0; i < 80; i++)
            fscanf(fin, "%ld %s %s", &stu[i].no, stu[i].name, stu[i].grade);
    }
    fclose(fin);

    FILE* fout;
    STU lucky[5];
    srand((unsigned int)time(NULL));
    for (i = 0; i < 5; i++)
    {
        lucky[i].no = 204942000 + (rand() % 80 + 1);
    }
    for (i = 0; i < 5; i++)
    {
        for (j = 0; j < 80; j++)
        {
            if (lucky[i].no == stu[j].no)
                lucky[i] = stu[j];
        }
    }
    for (i = 0; i < 5; i++)
        printf("%ld\t%s\t%s\n", lucky[i].no, lucky[i].name, lucky[i].grade);

    fout = fopen("lucky.txt", "w");
    if (!fout) {
        printf("fail to open or create lucky.txt\n");
        exit(0);
    }
    for (i = 0; i < 5; i++)
    {
        fprintf(fout, "%ld\t%s\t%s\n", lucky[i].no, lucky[i].name, lucky[i].grade);
    }
    fclose(fout);
    return 0;
}

 

if (ch!=' '&&ch!='\n'&&ch!="\t"&&ch!=EOF) {
            count++;
        }
    }
    printf("%d", count);
    return 0;
}

 

标签:no,int,++,lucky,STU,实验,include
From: https://www.cnblogs.com/6654wcx/p/17009193.html

相关文章

  • 实验五
    #define_CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>#include<string.h>#defineN100typedefstructstudent{charnum[10];ints1;......
  • 实验五
    任务1#include<stdio.h>#include<string.h>#defineN3typedefstructstudent{intid;charname[20];charsubj......
  • 实验任务6
    #include<stdio.h>#include<stdlib.h>intmain(){charcr;FILE*fp;longcount;if((fp=fopen("data4.txt","r"))==NULL){printf("Can'tope......
  • 网络程序设计 实验5 图形化Ping工具
    实验5图形化Ping工具实验目的:用图形界面实现Ping操作。开发语言与工具:VC实验要求:1.使用MFC编程。2.界面上有目标地址栏,信息框和ping按钮。3.使用原始套接字实......
  • 实验六
    #include<stdio.h>#include<stdlib.h>intmain(){charcr;FILE*fp;longcount;if((fp=fopen("data4.txt","r"))==NULL){printf(......
  • 实验6
    #include<stdio.h>#define_CRT_SECURE_NO_WARNINGS#include<stdlib.h>intmain(){charch;intcount=0;FILE*fp;fp=fopen("data4.txt","r");......
  • 实验六
    #include<stdio.h>#include<string.h>#include<stdlib.h>intmain(){ FILE*fp; fp=fopen("data4.txt","r"); charch='a'; inti=0; do { ch=fgetc(fp);......
  • 实验6
    #include<stdio.h>intmain(){FILE*fp;fp=fopen("data4.txt","r");charch;intcount=0;do{ch=fgetc(fp);......
  • 实验5
    #define_CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<string.h>#defineN5typedefstructstudent{charname[10];intnum;intmaths;......
  • 实验6 文件应用编程
    实验任务4#define_CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<stdlib.h>intmain(){FILE*fp;charch;intcount=0;fp=fopen("E:\\s......