首页 > 其他分享 >实验七

实验七

时间:2023-06-15 13:12:31浏览次数:25  
标签:stu int void stuChoose STU 实验 include

实验任务4

程序源码

#include <stdio.h>
#include <ctype.h>

int main()
{
    FILE *fp;
    char ch;
    int count = 0;
    fp = fopen("data4.txt", "r");
    while ((ch = fgetc(fp)) != EOF)
    {
        if (!isspace(ch))
        {
            count++;
        }
    }
    fclose(fp);
    printf("data4.txt中共包含字符数(不计空白符): %d", count);
    return 0;
}

程序运行截图

 

 

实验任务5

程序源码

#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)
{
    // 补足代码
    for (int i = 0; i < n; i++)
    {
        s[i].sum = s[i].objective + s[i].subjective;
    }

    STU temp;

    for (int i = 0; i < n - 1; i++)
    {
        for (int j = 0; j < n - i - 1; j++)
        {
            if (s[j].sum < s[j + 1].sum)
            {
                temp.id = s[j].id;
                temp.objective = s[j].objective;
                temp.subjective = s[j].subjective;
                temp.sum = s[j].sum;
                strcpy(temp.level, s[j].level);
                strcpy(temp.name, s[j].name);

                s[j].id = s[j + 1].id;
                s[j].objective = s[j + 1].objective;
                s[j].subjective = s[j + 1].subjective;
                s[j].sum = s[j + 1].sum;
                strcpy(s[j].level, s[j + 1].level);
                strcpy(s[j].name, s[j + 1].name);

                s[j + 1].id = temp.id;
                s[j + 1].objective = temp.objective;
                s[j + 1].subjective = temp.subjective;
                s[j + 1].sum = temp.sum;
                strcpy(s[j + 1].level, temp.level);
                strcpy(s[j + 1].name, temp.name);
            }
        }
    }

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

程序运行截图

 

实验任务6

程序源码

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

#define N 80
#define NCHOOSE 5

typedef struct
{
    long int id;
    char name[20];
    char className[100];
} STU;

void input(STU s[], int n);
void process(STU stu[], STU stuChoose[], int n);
void output(STU s[], int n);

int main()
{
    STU stu[N];
    STU stuChoose[NCHOOSE];
    input(stu, N);
    process(stu, stuChoose, N);
    output(stuChoose, NCHOOSE);
    return 0;
}

void input(STU s[], int n)
{
    int i;
    FILE *fin;
    fin = fopen("list.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    %s\n", &s[i].id, s[i].name, s[i].className);
    }
    fclose(fin);
}

void output(STU s[], int n)
{
    FILE *fout;
    int i;
    for (i = 0; i < n; i++)
        printf("%ld    %s    %s\n", s[i].id, s[i].name, s[i].className);
    fout = fopen("lucky.txt", "w");
    if (!fout)
    {
        printf("fail to open or create result.txt\n");
        exit(0);
    }
    for (i = 0; i < n; i++)
        fprintf(fout, "%ld    %s    %s\n", s[i].id, s[i].name, s[i].className);
    fclose(fout);
}

void process(STU stu[], STU stuChoose[], int n)
{
    srand(time(NULL));
    int nums[NCHOOSE] = {-1};
    int temp, i, j;
    for (i = 0; i < NCHOOSE; i++)
    {
        temp = rand() % 80;
        for (j = 0; j < i; j++)
        {
            if (nums[j] == temp)
            {
                i--;
                break;
            }
        }
        if (j == i)
        {
            nums[i] = temp;
        }
    }
    for (int i = 0; i < NCHOOSE; i++)
    {
        stuChoose[i].id = stu[nums[i]].id;
        strcpy(stuChoose[i].className, stu[nums[i]].className);
        strcpy(stuChoose[i].name, stu[nums[i]].name);
    }
}

 程序运行截图

 

标签:stu,int,void,stuChoose,STU,实验,include
From: https://www.cnblogs.com/202283300588t/p/17481755.html

相关文章

  • 实验7
    task4源代码#include<stdio.h>#include<stdlib.h>intmain(void){FILE*fp;charch;intletter=0;if((fp=fopen("data4.txt","r"))==NULL){printf("Fileopenerror!\n");exit(0);}......
  • 实验7
    task4#include<stdio.h>#include<stdlib.h>#include<string.h>constintN=5,M=100;intmain(){charch[M];intn=0;FILE*fp;fp=fopen("C:/Users/38084/Desktop/data4.txt.txt","r......
  • 实验七
    task4.c#include<stdio.h>#include<stdlib.h>intmain(){FILE*fp1,*fp2,*fp3;charch;fp1=fopen("data4.txt","r");fp2=fp3=fp1;while((ch=getc(fp2))!=EOF){if(ch!=''&&ch......
  • 实验7
    实验任务4运行结果 程序源码#include<stdio.h>intmain(){inti=0;charch;FILE*fp;fp=fopen("data4.txt","r");if(fp==NULL){printf("读取失败\n");return1;}......
  • 实验七
    四、实验任务4task4.c#include<stdio.h>#include<stdlib.h>#include<string.h>constintN=5,M=100;intmain(){charch[M];intn=0;FILE*fp;fp=fopen("C:/Users/38084/Desktop/data4.txt.txt&quo......
  • 实验7
    #include<stdio.h>#include<stdlib.h>intmain(){chars[100];FILE*fp;inti=0,j,k=0;charch;fp=fopen("data4.txt","rb");if(fp==NULL){printf("failtoopenfile\n"......
  • 实验七
    试验任务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(!......
  • 实验七
    #include<stdio.h>#include<stdlib.h>#include<string.h>#defineN5#defineM100intmain(){charch[M];intn=0;FILE*fp;fp=fopen("C://Users//Lenovo//Desktop//实验7数据文件及部分代码//实验7数据文件及部分代码//data4.txt",&q......
  • 实验七
    任务四#include<stdio.h>#include<stdlib.h>intmain(){FILE*fp;inti=0;charch;fp=fopen_s(&fp,"data4.txt","r");if(fp==NULL){printf("failtoopenfile\n");......
  • 实验7
    task4#define_CRT_SECURE_NO_WARNINGS#include<stdio.h>intmain(){charch;FILE*fp;intn=0;fp=fopen("data4.txt","r");//读出data4ch=fgetc(fp);while(ch!=EOF){if(ch......