首页 > 其他分享 >实验6

实验6

时间:2022-12-24 13:44:32浏览次数:32  
标签:fp int void STU 实验 printf t%

4. 实验任务4:文件简单应用

#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);
        if (ch!=' '&&ch!='\n'&&ch!="\t"&&ch!=EOF) {
            count++;
        }
    }
    printf("%d", count);
    return 0;
}

5. 实验任务5:文件综合应用

#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, "不合格");
}
}

 

6. 实验任务6:文件综合应用
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<time.h>
#define N 80
#define M 5
typedef struct {
    long id;
    char name[20];
    char class[50];
}STU;
void input(STU s[], int n);
void output(STU s[],STU lucky[], int n);
void process(STU s[],STU lucky[], int n);
int main()
{
    STU s[N], lucky[5];
    input(s, N);
    process(s, lucky, M);
    output(s, lucky, M);
    return 0;
}
void input(STU s[], int n) {
    FILE* fp;
    int i;
    fp = fopen("E:\\study\\sourse\\list.txt", "r");
    if (fp == NULL) {
        printf("fail to open the file\n");
        exit(0);
    }
    for (i = 0; i < n; i++) {
        fscanf(fp,"%ld %s %s",&s[i].id,s[i].name,s[i].class);
    }
    fclose(fp);
}
void output(STU s[],STU lucky[], int n) {
    FILE* fp;
    int i;
    printf("lucky people are:\n");
    for (i = 0; i < n; i++) {
        printf("%ld\t%s\t%s\n", s[i].id,
            lucky[i].name, lucky[i].class);
    }
        fp = fopen("E:\\study\\sourse\\a.txt", "w");
        if (fp == NULL) {
            printf("fail to open the file\n");
            exit(0);
        }
    }
    for (i = 0; i < n; i++) {
        fprintf(fp, "%ld\t\t%s\t%s\n", s[i].id,
            lucky[i].name, lucky[i] .class);
    }
    fclose(fp);
}
void process(STU s[],STU lucky[], int n) {
    srand(time(0));
    int x[5],i,j;
    int t;
    int flag = 0;
    for(i=0;i<5;i++){
        x[i] = rand()%81;
    }
    for (i = 0; i < 5; i++) {
        for (j = i+1; j < 5; j++) {
            if (x[i] == x[j]) {
                x[i] = rand() % 80;
                i=0;
                break;
            }
        }
    }
    for (i = 0; i < 5; i++) {
        t = x[i];
        lucky[i] = s[t];
    }
}

 

标签:fp,int,void,STU,实验,printf,t%
From: https://www.cnblogs.com/waterwhy/p/17002802.html

相关文章

  • 实验六 文件应用编程
    实验任务4#define_CRT_SECURE_NO_WARNINGS#include<stdlib.h>#include<stdio.h>intmain(){charch;intcount=0;FILE*fp;fp=fopen("data......
  • 实验五 结构体应用编程
    实验任务1#define_CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<string.h>#defineN3//运行程序输入测试时,可以把这个数组改小一些输入测试typ......
  • 实验5
    #include<stdio.h>#include<string.h>#defineN100typedefstruct{charnum[10];//学号ints1;//期末成绩ints2;......
  • 《DFZU2EG_4EV MPSoc之FPGA开发指南》 第三十章 基于OV5640的PL以太网视频传输实验​
    基于OV5640的PL以太网视频传输实验​OV5640是OmniVision(豪威科技)公司生产的CMOS图像传感器。OV5640支持更高的分辨率、采集速率,具有更高的图像处理性能,主要应用在手机、数码......
  • 《DFZU2EG_4EV MPSoc之FPGA开发指南》第三十一章 DDR4读写测试实验​
    DDR4读写测试实验​DDR4SDRAM(Double-Data-RateFourthGenerationSynchronousDynamicRandomAccessMemory,简称为DDR4SDRAM),是一种高速动态随机存取存储器,它属于SDRAM家......
  • 实验6
    1.task1_1//将图书信息写入文本文件data1.txt#include<stdio.h>#defineN7#defineM80typedefstruct{charname[M];//书名charauthor[M];......
  • 实验5
    #define_CRT_SECURE_NO_WARNINGS1#include<stdio.h>#include<string.h>#defineN10//运行程序输入测试时,可以把这个数组改小一些输入测试typedefstructstude......
  • 实验6
    #include<stdio.h>#define_CRT_SECURE_NO_WARNINGS#include<stdlib.h>intmain(){charch;intcount=0;FILE*fp;fp=fopen("data4.txt","r");......
  • 实验六
    //task4#include<stdio.h>#define_CRT_SECURE_NO_WARNINGS#include<stdlib.h>intmain(){charch;intcount=0;FILE*fp;fp=fopen("data4.txt",......
  • 实验六
    实验任务四#include<stdio.h>#define_CRT_SECURE_NO_WARNINGS#include<stdlib.h>intmain(){charch;intcount=0;FILE*fp;fp=fopen("data4.t......