• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录

jy1220

  • 博客园
  • 联系
  • 订阅
  • 管理

公告

View Post

实验6


#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>

int main()
{
    int count = 0;

    FILE* fp;
    fp = fopen("C:\\Users\\yuyee\\Desktop\\程序\\实验6\\data4.txt", "r");
    if ((fp = fopen("C:\\Users\\yuyee\\Desktop\\程序\\实验6\\data4.txt", "r")) == NULL)
    {
        printf("cannot open file\n");
        exit(0);
    }

    while (fgetc(fp) != EOF)
    {
        if (fgetc(fp) != ' ' && fgetc(fp) != '\t' && fgetc(fp) != '\n')
        {
            count++;
        }
    }

    fclose(fp);
    printf("data4.txt中共包含字符数(不计空白符):%d", count);

    return 0;
}

 

#define _CRT_SECURE_NO_WARNINGS
#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("C:\\Users\\yuyee\\Desktop\\程序\\实验6\\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("C:\\Users\\yuyee\\Desktop\\程序\\实验6\\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;
    for (i = 0; i < n; i++)
    {
        s[i].sum = s[i].objective * 0.4 + s[i].subjective * 0.6;
    }

    STU temp;
    int j;
    for (i = 0; i < n - 1; i++)
    {
        for (j = 0; j < n - 1 - i; j++)
        {
            if (s[i].sum < s[i + 1].sum)
            {
                temp = s[i];
                s[i] = s[i + 1];
                s[i + 1] = temp;
            }
        }
    }
    for (i = 0; i < n * 0.1; i++)
        strcpy(s[i].level, "优秀");
    for(;i<0.5*n;i++)
        strcpy(s[i].level, "合格");
    for (; i <  n; i++)
        strcpy(s[i].level, "不合格");
    

}

 

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
typedef struct
{
    long num;
    char name[20];
    char cl[20];
}STU;
int main()
{
    STU a[80], luc[5];
    FILE* fp;
    fp = fopen("C:\\Users\\yuyee\\Desktop\\程序\\实验6\\list.txt", "r");
    if ((fp = fopen("C:\\Users\\yuyee\\Desktop\\程序\\实验6\\list.txt", "r")) == NULL)
    {
        printf("cannot open file\n");
        exit(0);
    }

    int i;
    while (!feof(fp))
    {
        for (i = 0; i < 80; i++)
        {
            fscanf(fp, "%ld %s %s", &a[i].num, a[i].name, a[i].cl);
        }
    }

    fclose(fp);

    FILE* fp2;
    fp2 = fopen("C:\\Users\\yuyee\\Desktop\\程序\\实验6\\lucky.txt", "w");
    if ((fp2 = fopen("C:\\Users\\yuyee\\Desktop\\程序\\实验6\\lucky.txt", "w")) == NULL)
    {
        printf("cannot open file\n");
        exit(0);
    }

    srand (time(NULL));
    for (i = 0; i < 5; i++)
        luc[i].num = 204942000 + rand() % 80 + 1;

    int j;
    for (i = 0; i < 5; i++)
    {
        for (j = 0; j < 80; j++)
        {
            if (luc[i].num == a[j].num)
                luc[i] = a[j];
        }
    }

    for (i = 0; i < 5; ++i)
    {
        fprintf(fp2, "%ld\t%s\t%s\n", luc[i].num, luc[i].name, luc[i].cl);
        printf("%ld\t%s\t%s\n", luc[i].num, luc[i].name, luc[i].cl);
    }

    fclose(fp2);

    return 0;
}

 

posted on 2022-12-24 18:39  沉月眠眠  阅读(23)  评论(0)    收藏  举报

刷新页面返回顶部
 
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3