实验7

task4

源代码

#include <stdio.h>
int main()
{
    FILE *fp = fopen("data4.txt", "r");
    if(fp == NULL)
    {
        printf("文件打开失败\n");
        return 1;
    }
    int line = 0, ch = 0, c;
    while((c = fgetc(fp)) != EOF)
    {
        if(c == '\n')
            line++;
        if(c != ' ' && c != '\n' && c != '\t')
            ch++;
    }
    fclose(fp);
    printf("data4.txt统计结果:\n");
    printf("行数:%d\n", line);
    printf("字符数(不计空白符):%d\n", ch);
    return 0;
}

  运行结果实验7.4.1

task5

源代码

#include <stdio.h>
#include <string.h>
#define N 10

typedef struct {
    long id;            // 准考证号
    char name[20];      // 姓名
    float objective;    // 客观题得分
    float subjective;   // 操作题得分
    float sum;          // 总分
    char result[10];    // 考试结果
} STU;

// 函数声明
void read(STU st[], int n);
void write(STU st[], int n);
void output(STU st[], int n);
int process(STU st[], int n, STU st_pass[]);

int main() {
    STU stu[N], stu_pass[N];
    int cnt;
    double pass_rate;

    printf("从文件读入%d个考生信息: 已完成\n", N);
    read(stu, N);

    printf("\n对考生成绩进行统计: 已完成\n");
    cnt = process(stu, N, stu_pass);

    printf("\n所有考生完整信息:\n");
    output(stu, N);   

    printf("\n通过考试的名单写入文件: 已完成!\n");
    write(stu_pass, cnt);

    pass_rate = 1.0 * cnt / N;
    printf("\n本次等级考试通过率: %.2f%%\n", pass_rate*100);

    return 0;
}

// 把所有考生完整信息输出到屏幕上
// 准考证号,姓名,客观题得分,操作题得分,总分,结果
void output(STU st[], int n) {
    int i;
    
    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", st[i].id, st[i].name, st[i].objective, st[i].subjective, st[i].sum, st[i].result);
}

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

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

    for (i = 0; i < n; i++)
        fscanf(fin, "%ld %s %f %f", &st[i].id, st[i].name, &st[i].objective, &st[i].subjective);

    fclose(fin);
}

// 对考生信息进行处理:计算每位考生考试总分、结果;统计并返回通过考试的人数
int process(STU st[], int n, STU st_pass[]) {
    int i, pass_cnt = 0;
    for(i = 0; i < n; i++)
    {
        // 计算总分
        st[i].sum = st[i].objective + st[i].subjective;
        // 判断考试结果
        if(st[i].sum >= 60)
        {
            strcpy(st[i].result, "通过");
            st_pass[pass_cnt++] = st[i]; // 及格考生存入数组
        }
        else
        {
            strcpy(st[i].result, "未通过");
        }
    }
    return pass_cnt; // 返回及格总人数
}

// 把通过考试的考生完整信息写入文件list_pass.txt
// 准考证号,姓名,客观题得分,操作题得分,总分,结果
void write(STU st[], int n) {
    FILE *fout = fopen("list_pass.txt", "w");
    int i;
    if(fout == NULL)
    {
        printf("无法打开list_pass.txt写入文件!\n");
        return;
    }
    // 写入表头
    fprintf(fout, "准考证号\t姓名\t客观题得分\t操作题得分\t总分\t结果\n");
    // 循环写入每一位及格学生信息
    for(i = 0; i < n; i++)
    {
        fprintf(fout, "%ld\t%s\t%.2f\t\t%.2f\t\t%.2f\t%s\n",
                st[i].id, st[i].name, st[i].objective,
                st[i].subjective, st[i].sum, st[i].result);
    }
    fclose(fout); // 关闭文件
}

  运行结果实验7.5

实验7。51

task6

源代码

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

#define TOTAL 80    // 总人数80
#define WIN_NUM 5   // 抽取5位中奖者

// 学生结构体
typedef struct {
    char id[12];
    char name[20];
    char cls[20];
} Student;

int main() {
    Student stu[TOTAL];
    int i, j, cnt = 0;
    int winIdx[WIN_NUM];  // 存储中奖下标,保证不重复
    char outFileName[30];
    FILE *fin, *fout;

    // 1. 读取list.txt全部学生数据
    fin = fopen("list.txt", "r");
    if (fin == NULL) {
        printf("无法打开list.txt文件!\n");
        return 1;
    }
    while (fscanf(fin, "%s %s %s", stu[cnt].id, stu[cnt].name, stu[cnt].cls) == 3 && cnt < TOTAL) {
        cnt++;
    }
    fclose(fin);

    // 2. 随机抽取5个不重复下标
    srand((unsigned)time(NULL)); // 设置随机种子
    for (i = 0; i < WIN_NUM; i++) {
        int randNum;
        int repeatFlag;
        do {
            repeatFlag = 0;
            randNum = rand() % TOTAL; // 生成0~79随机下标
            // 检查是否和已抽取下标重复
            for (j = 0; j < i; j++) {
                if (winIdx[j] == randNum) {
                    repeatFlag = 1;
                    break;
                }
            }
        } while (repeatFlag == 1);
        winIdx[i] = randNum;
    }

    // 3. 屏幕输出中奖名单
    printf("----------------中奖名单----------------\n");
    for (i = 0; i < WIN_NUM; i++) {
        int pos = winIdx[i];
        printf("%s\t%s\t%s\n", stu[pos].id, stu[pos].name, stu[pos].cls);
    }
    printf("----------------------------------------\n");

    // 4. 输入输出文件名,写入文件
    printf("输入文件名:");
    scanf("%s", outFileName);
    strcat(outFileName, ".txt"); // 自动补后缀.txt

    fout = fopen(outFileName, "w");
    if (fout == NULL) {
        printf("文件创建失败!\n");
        return 1;
    }
    for (i = 0; i < WIN_NUM; i++) {
        int pos = winIdx[i];
        fprintf(fout, "%s\t%s\t%s\n", stu[pos].id, stu[pos].name, stu[pos].cls);
    }
    fclose(fout);
    printf("保存成功!\n");

    return 0;
}

  运行结果实验7.6

实验7.6.1

 

posted @ 2026-06-22 23:14  骑三轮的鱼  阅读(11)  评论(0)    收藏  举报