首页 > 其他分享 >实验7

实验7

时间:2023-06-15 13:00:20浏览次数:23  
标签:name int void STU 实验 printf include

task 4

源代码

#include <stdio.h>
#include <stdlib.h>
int main(void){
    FILE *fp;
    char ch;
    int letter=0;
    if((fp=fopen("data4.txt","r"))==NULL)
    {
    printf("File open error!\n");
    exit(0);
    }
    while((ch=fgetc(fp))!=EOF)
    {
    if(ch>='!'&&ch<='z')
    letter=letter+1;

    }
    printf("data4.txt中所包含的字符数(不包含空白符)%d\n",letter);

 
  return 0;
}

运行结果

task 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("D:/Seven/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) {
    STU tmp;
    int i, j;
   
    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) {
                tmp = s[j];
                s[j] = s[j + 1];
                s[j + 1] = tmp;
            }
        }
    }
    for (i = 0; i < n; ++i) {
        if (i <= n * 0.1)
            strcpy(s[i].level, "优秀");
        else if (i > n * 0.1 && i <= n * 0.5)
            strcpy(s[i].level, "合格");
        else
            strcpy(s[i].level, "不合格");
    }
   
}

 运行结果

task 6

源代码

//task6
 
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#define N 80
 
typedef struct
{
    int id;
    char name[20];
    char classes[30];
} STU;
 
void input(STU s[], int n);
void output(STU s[], int n);
void process(STU s[], STU t[], int n);
 
int main()
{
    STU stu[N], lucky[N];
    int num;
 
    printf("从文件读入学生信息\n\n");
    input(stu, N);
     
    srand(time(NULL));
     
    while(1)
    {
        printf("请输入要抽取的学生人数:\n");
        scanf("%d", &num);
         
        if(num == 0)
            break;
 
        process(stu, lucky, num);
     
        printf("\n抽取完毕,正在输出。\n\n");
        output(lucky, num);
    }
     
    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, "%d %s %s", &s[i].id, s[i].name, s[i].classes);
    }
 
    fclose(fin);
}
 
void output(STU s[], int n)
{
    FILE *fout;
    int i;
    time_t timeseed;
    struct tm *now;
    char name[N] = {0};
  
    time(&timeseed);
    now = localtime(&timeseed);
    strftime(name, N, "%Y.%m.%d %H-%M-%S.txt", now);
     
    printf("\n");
    //printf("%s\n", name);
     
    printf("学号\t\t姓名\t\t班级\n");
    for (i = 0; i < n; i++)
        printf("%d\t%s\t\t%s\n", s[i].id, s[i].name, s[i].classes);
         
    printf("\n");
     
    fout = fopen(name, "w");
    if (!fout) {
        printf("fail to open or create lucky.txt\n");
        exit(0);
    }
     
    fprintf(fout, "学号\t\t姓名\t\t班级\n");
    for (i = 0; i < n; i++)
        fprintf(fout, "%d\t%s\t\t%s\n", s[i].id, s[i].name, s[i].classes);
 
    fclose(fout);
}
 
void process(STU s[], STU t[], int n)
{
    int i, k;
    STU *temp[N];
     
    for(i = 0; i < N; i++)
        temp[i] = &s[i];
     
    for( i = 0; i < n; )
    {
        k = rand()%N;
         
        if(temp[k] != NULL)
        {
            t[i++] = s[k];
            temp[k] = NULL;
        }
    }
}

运行结果

 

标签:name,int,void,STU,实验,printf,include
From: https://www.cnblogs.com/chenyihan/p/17467203.html

相关文章

  • 实验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......
  • 实验七
      实验四#include<stdio.h>#include<string.h>#include<stdlib.h>intmain(){intt=0;chars[80];FILE*fp;fp=fopen("C://Users//Administrator//Desktop//实验7//实验7数据文件及部分代码//data4.txt","r");......