实验六

Part 1:

 

#include 
#include  

const int N=5;

// 定义结构体类型struct student,并定义STU为其别名 
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;
} 

// 输入n个学生信息,存放在结构体数组s中 
void input(STU s[], int n) {
    int i;
    for(i=0; i) 
        scanf("%ld %s %d", &s[i].no, s[i].name, &s[i].score);
} 

// 输出结构体s中n个元素信息
void output(STU s[], int n) {
    int i;
    for(i=0; i)
        printf("%ld %s %d\n", s[i].no, s[i].name, s[i].score); 
} 

// 在结构体数组s中,查找最低分学生的记录,将其存入结构体数组s中
// 形参n是结构体数组s中元素个数
// 函数返回最低分的学生人数 
int findMinlist(STU s[], STU t[], int n) {
int i=0,min=s[0].score,count=0;
for(i=0;i)
{
    if(min>=s[i].score)
    {
    min=s[i].score;
    }
}
for(i=0;i)
{
    if(s[i].score==min)
    {   
        t[count++]=s[i]; 
    }
}
return count; 
}

实验六_第1张图片

 

#include 
#include  
#include <string.h>
const int N = 10;

// 定义结构体类型struct student,并定义其别名为STU 
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)
    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)
    printf("%ld %10s %5.2f %5.2f %5.2f %10s\n",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,j;
    STU temp;
    for(i=0;i)
    s[i].sum=s[i].objective*0.4+s[i].subjective*0.6;
    for(i=0;i1;i++)
      for(j=0;j1-i;j++)
        if(s[j].sum1].sum) {
            temp = s[j];
            s[j] = s[j+1];
            s[j+1] = temp;
    }
    for(i=0;i){
        if(i<0.1*n)
            strcpy(s[i].level,"优秀");
        else if(i>=0.1*n&&i<0.5*n)
            strcpy(s[i].level,"合格");
        else
            strcpy(s[i].level,"不合格"); 
    }
    
}

实验六_第2张图片

Part2:

共同体是几个不同类型的变量共占一段字节

Part3:

基本数据类型,整型

不能直接输入输出

枚举类型可以隐含转换成整型,但整型必须显示转换成枚举类型

 

总结与体会:

经过本次实验,对于结构体有了进一步的掌握

踩得坑有 在编写输出函数的时候忘记加换行符号,导致输入后结果很乱

               在编写第二个程序时,百分之十和百分之五十的端点情况一开始没有弄清就写,结果就错了

你可能感兴趣的:(实验六)