实验六
Posted zaazzle516
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实验六相关的知识,希望对你有一定的参考价值。
#include <stdio.h> #include <string.h> const int N=3; // 定义结构体类型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); input(stu,N); printf(" 对考生信息进行处理: 计算总分,确定等级 "); process(stu,N); printf(" 打印考生完整信息: 准考证号,姓名,客观题得分,操作题得分,总分,等级 "); output(stu,N); return 0; } // 录入考生信息:准考证号,姓名,客观题得分,操作题得分 void input(STU s[], int N) { //FILE*fin; //fin=fopen("info","r"); for(int i=0;i<N;i++) scanf("%ld %s %f %f ",&s[i].id,s[i].name,&s[i].objective,&s[i].subjective); //fclose(fin); } //输出考生完整信息: 准考证号,姓名,客观题得分,操作题得分,总分,等级 void output(STU s[], int N) { //FILE*fout; //fout=fopen("after","w"); for(int i=0;i<N;i++){ printf(" %ld %s %f",s[i].id,s[i].name,s[i].objective); printf(" %f %f %c ",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].subjective+s[i].objective; //冒泡排序 STU tmp; for(int i=0;i<N;i++){ for(int 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; } } }//排序结束 //比例 int NA=N/10; NA+=(N%10>0); //加上小数点那个人 int NB=(N-NA)/2;//我定义的良好没有加那个小数点,比较残酷 int NC=N-NA-NB; for(int i=0;i<N;i++){ if(i>=0&&i<NA) strcpy(s[i].level,"优秀"); if(i>=NA&&i<NB) strcpy(s[i].level,"良好"); if(i>=NB&&i<N) strcpy(s[i].level,"不合格"); } }
#include <stdio.h> 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); input(stu, N); printf(" 统计最低分人数和学生信息... "); count = findMinlist(stu, minlist, N); printf(" 一共有%d个最低分,信息如下: ", count); output(minlist, count); return 0; } // 输入n个学生信息,存放在结构体数组s中 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); } // 输出结构体s中n个元素信息 void output(STU s[], int n) { int i; for(i=0; i<n; i++) printf("%ld %s %d ", s[i].no, s[i].name, s[i].score); } // 在结构体数组s中,查找最低分学生的记录,将其存入结构体数组s中 // 形参n是结构体数组s中元素个数 // 函数返回最低分的学生人数 int findMinlist(STU s[], STU t[], int n) { int k=0; STU tmp; for(int i=0;i<N;i++){ for(int j=0;j<N-i-1;++j){ if(s[j].score>s[i].score){ tmp=s[j]; s[j]=s[j+1]; s[j+1]=tmp; } } }//排序结束 for(int i=0;i<N;++i){ if(s[0].score==s[i].score) t[k++]=s[i]; } return k; }
//对应上次那个出错的
// 练习:使用选择法对字符串按字典序排序 //这个我正序输出是错的,但逆序输出是对的(在strcmp中加了个<0),很懵,不明白为啥 #include <stdio.h> #include <string.h> void selectSort(char str[][20], int n ); // 函数声明,形参str是二维数组名 int main() { char name[][20] = {"John", "Alex", "Joseph", "Taylor", "George"}; int i; printf("输出初始名单: "); for(i=0; i<5; i++) printf("%s ", name[i]); selectSort(name, 5); // 调用选择法对name数组中的字符串排序 printf("按字典序输出名单: "); for(i=0; i<5; i++) printf("%s ", name[i]); return 0; } void selectSort(char str[][20], int n) { int i,j,k; char tmp[100]; for(i=0; i<n-1; i++) { k=i; // k用于记录当前最小元素的下标 for(j=i+1; j<n; j++) if (strcmp(str[k],str[j])>0) k=j; if(k!=i) { strcpy(tmp,str[i]); strcpy(str[i],str[k]); strcpy(str[k],tmp); } } return; }
这个文件的方式我再尝试尝试...
以上是关于实验六的主要内容,如果未能解决你的问题,请参考以下文章