Part 1
1补足程序ex1_2.cpp
#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) { // 补足函数实现 struct student; int i,j; int m,p=0; m=s[0].score; for(i=1;i ) { if(m>s[i].score) { m=s[i].score; } } for(j=0;j ) { if(s[j].score==m) { t[p++]=s[j]; } } return p; }
2补足程序ex1_3.cpp
#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("%d %s %f %f %f %s\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; for(i=0;i ) { s[i].sum=s[i].objective+s[i].subjective; } student temp; for(i=0;i 1;i++) for(j=0;j 1;j++) if(s[j].sum 1].sum) { temp=s[j]; s[j]=s[j+1]; s[j+1]=temp; } strcpy(s[0].level,"优秀"); for(i=1;i<=4;i++) strcpy(s[i].level,"合格"); for(i=5;i) strcpy(s[i].level,"不合格"); }
Part 2
区别:在一个结构体(变量)里,结构体的各成员顺序排列存储,每个成员都有自己独立的存储位置。共用体的情况不是这样,一个共用体变量的所有成员共享同一片存储区。因此一个共同体变量在每个时刻里只能保存它的某一个成员的值。
Part 3
1、枚举类型用于描述哪一类数据:整型。
2、枚举变量使用过程中的注意事项
能否直接输入输出:不可以直接输入、输出。
能否把一个int型数值赋值给一个枚举类型的变量?反过来呢?:不可以;反过来可以。
实验心得:
结构体和前面比起来稍微简单一些,掌握好前面的知识编写程序就比较容易一点,比如冒泡排序之类的都是一样的思路只是换一种编法。另外结构体中需要打量的数组与指针的知识,这方面还需多加练习。