首页 > 其他 > 详细

实验六

时间:2019-12-23 23:32:25      阅读:101      评论:0      收藏:0      [点我收藏+]

ex1-2

#include <stdio.h>
#include <stdlib.h> 
const int N=5;
typedef struct student {
    long no;
    char name[20];
    int score;     
}STU;
void input(STU s[], int n);
int findMinlist(STU s[], STU t[], int n);
void output(STU s[], int n);
int main(){
    STU stu[N], minlist[N];
    int count;
    printf("录入%d个学生信息\n",N);
    input(stu,N);
    printf("\n统计最低分人数和学生信息...\n");
    count=findMinlist(stu, minlist, N);
    printf("\n一共有%d个最低分,信息如下:\n",count);
    output(minlist,count);
    system("pause");
    return 0;
}
void input(STU s[],int n){
    int i;
    for(i=0;i<n;i++)
        scanf("%ld %s %d", &s[i].no, s[i].name, &s[i].score);
}
void output(STU s[], int n){
    int i;
    for(i=0;i<n;i++)
        printf("%ld %s %d\n", s[i].no, s[i].name, s[i].score);
}
int findMinlist(STU s[], STU t[], int n) {
    int i,j=0,l;
    l=s[0].score;
    for(i=0;i<n;i++){
        if(l>=s[i].score){
            l=s[i].score;
        }
    }
    for(i=0;i<n;i++){
        if(l==s[i].score){
            t[j++]=s[i];
        }
    }
    return j;
} 

技术分享图片

ex1-3

#include <stdio.h>
#include <stdlib.h> 
#include <string.h>
const int N = 10;
typedef struct student {
    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打印考生完整信息: 准考证号,姓名,客观题得分,操作题得分,总分,等级\n");
    output(stu, N); 
    
    system("pause");
    return 0;
}
void input(STU s[], int n) {
    int i;
    for(i=0;i<n;i++){
        scanf("%ld %s %f %f",&s[i].id,s[i].name,&s[i].objective,&s[i].subjective);
    } 
}
void output(STU s[], int n) {
    int i;
    for(i=0;i<n;i++){
        scanf("%ld %s %f %f %f %s",s[i].id,s[i].name,s[i].objective,s[i].subjective,s[i].sum,s[i].level);
    }
}
void process(STU s[], int n) {
    int i;
    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-1-i;j++){
            if(s[j].sum < s[j+1].sum){
            temp=s[j];
            s[j]=s[j+1];
            s[j+1]=temp;
            }
        }
    }
    for(i=0;i<n;i++){
        if((i+1)<=n*0.1){
            strcpy(s[i].level,"优秀");
        }
        else if((i+1)>n*0.1 && (i+1)<=n*0.5){
            strcpy(s[i].level,"合格");
        }
        else{
            strcpy(s[i].level,"不合格");
        }
    }
}

由于需要输入的数据略微偏多,故而无图展示,请见谅。:-)(其实就是懒)

实验六

原文:https://www.cnblogs.com/wangshuodi1447216674/p/12088871.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!