C语言学生管理系统四大典例Word文档格式.docx
- 文档编号:22403429
- 上传时间:2023-02-03
- 格式:DOCX
- 页数:41
- 大小:27.25KB
C语言学生管理系统四大典例Word文档格式.docx
《C语言学生管理系统四大典例Word文档格式.docx》由会员分享,可在线阅读,更多相关《C语言学生管理系统四大典例Word文档格式.docx(41页珍藏版)》请在冰豆网上搜索。
**要求输出平均分格式为:
Theaveragescoreis:
(4)按成绩由高到低排出名次表;
**要求输出提示信息为:
Sortedresultasscoredecreasing:
**要求输出格式为:
%ld,%4.0f\n"
(5)按学号由小到大排出成绩表;
Sortedresultasnumberincreasing:
(6)按学号查询学生排名及其考试成绩;
提示信息:
Pleaseinputthenumberyouwanttosearch:
**如果未查到此学号的学生,提示信息为:
Thenumberyouinputisnotexist!
**如果查询到该学生,要求输出格式为:
Therankingofnumber%ldis%d,andthescoreis%4.0f\n"
(7)按优秀(90~100)、良好(80~89)、中等(70~79)、及格(60~69)、不及格(0~59)5个类别,统计每个类别的人数以及所占的百分比;
perfect\t\tgood\t\tmedium\t\tpass\t\tfail\n"
**要求输出人数格式为:
%.0f\t\t%.0f\t\t%.0f\t\t%.0f\t\t%.0f\n"
**要求输出百分比格式为:
%.2f%%\t\t%.2f%%\t\t%.2f%%\t\t%.2f%%\t\t%.2f%%\n"
(8)输出每个学生的学号、考试成绩,以及课程总分和平均分。
Allthenumbersandscoresarebelow:
**要求输出成绩格式为:
#include
<
stdio.h>
#defineARR_SIZE30
voidsort(floatscore[],longnum[],intn);
voidSS(floatscore[],longnum[],intn);
intSea(longnum[],intn,longx);
intmain()
{
floata=0,b=0,c=0,d=0,e=0,score[ARR_SIZE];
intn,pos,i,temp,totalscore=0,averagescore;
longnum[ARR_SIZE],x;
printf("
);
scanf("
&
n);
for(i=0;
i<
n;
i++)
num[i],&
score[i]);
}
totalscore=totalscore+score[i];
%d\nTheaveragescoreis:
totalscore,totalscore/n);
sort(score,num,n);
num[i],score[i]);
}
SS(score,num,n);
%ld"
x);
pos=Sea(num,n,x);
if(pos!
=-1)
Therankingofnumber%ldis%d,andthescoreis
%4.0f\n"
x,pos+2,score[pos]);
else
{
if(score[i]>
=90)
a++;
elseif(score[i]>
=80)
b++;
=70)
c++;
=60)
d++;
e++;
a,b,c,d,e);
(100*a)/n,(100*b)/n,(100*c)/n,(100*d)/n,(100*e)/n);
return0;
}0
voidsort(floatscore[],longnum[],intn)
inti,j;
floattemp1;
long
temp2;
n-1;
for(j=i+1;
j<
j++)
if(score[j]>
score[i])
temp1=score[j];
score[j]=score[i];
score[i]=temp1;
temp2=num[j];
num[j]=num[i];
num[i]=temp2;
voidSS(floatscore[],longnum[],intn)
floattemp1,temp2;
if(num[i]>
num[j])
intSea(longnum[],intn,longx)
inti;
if(num[i]==x)
return(i);
return(-1);
}
二
学生成绩管理系统V3.0
某班有最多不超过30人(具体人数由键盘输入)参加某门课程的考试,用二维字符数组表示学生姓名作函数参数编程实现如下菜单驱动的学生成绩管理系统:
提示:
当读字符或字符串时,有时需要事先用gets函数过滤掉之前的回车符,所有在codeblock正确运行但在该系统中存在运行超限或输出错误的同学,请把getchar或scanf("
%c"
改为gets试试
(1)录入每个学生的学号、姓名和考试成绩;
输入学生人数:
Pleaseinputtotalnumber(<
=30):
**如果输入的数目大于指定最高,则报错退出,提示信息输出为:
Outofrange!
输入学生学号、姓名和成绩:
**要求输入提示信息为:
Pleaseenterthenumber,nameandscore:
**要求输入学号格式为:
%ld\n"
**要求输入姓名用:
gets()
**要求输入成绩格式为:
%f"
**输入完数据后输出:
Thedatahasbeeninputed.\n"
(2)计算课程的总分和平均分;
**要求输出总分格式为:
%.1f\n"
**要求输出平均分格式为:
(3)按成绩由高到低排出名次表;
Sortedresultasscoredescending:
%ld,%s,%4.0f\n"
(4)按成绩由低到高排出名次表;
Sortedresultasscoreascending:
Sortedresultasnumberascending:
(6)按姓名的字典顺序排出成绩表;
Sortedresultasdictionaryorder:
(7)按学号查询学生排名及其考试成绩;
Pleasethenumberyouwanttosearch:
Therankingofnumber%ldis%d,andthescoreis%4.0f\n"
(8)按姓名查询学生排名及其考试成绩;
Pleasethenameyouwanttosearch:
**如果未查到此学号的学生,提示信息为:
Thenameyouinputisnotexist!
**如果查询到该学生,要求输出格式为:
Therankingofname%sis%d,andthescoreis%4.0f\n"
(9)按优秀(90~100)、良好(80~89)、中等(70~79)、及格(60~69)、不及格(0~59)5个类别,统计每个类别的人数以及所占的百分比;
**要求输出提示信息为:
**要求输出人数格式为:
**要求输出百分比格式为:
(10)输出每个学生的学号、考试成绩,以及课程总分和平均分。
Allthenumbers,namesandscoresarebelow:
**要求输出成绩格式为:
(11)要求程序运行后先显示菜单,并提示用户输入选项。
**要求菜单输出信息为:
2.Caculatetotalandaveragescoreofcourse\n"
"
3.Sortindescendingorderbyscore\n"
4.Sortinascendingorderbyscore\n"
5.Sortinascendingorderbynumber\n"
6.Sortindictionaryorderbyname\n"
7.Searchbynumber\n"
8.Searchbyname\n"
9.Statisticanalysis\n"
10.Listrecord\n"
0.Exit\n"
**要求提示用户输入选项信息为:
Pleaseenteryourchoice:
(12)当输入0时,输出"
Exit\n"
string.h>
#include<
stdlib.h>
voidscorehl(floatscore[],charname[][20],longnum[],intn);
voidscorelh(floatscore[],charname[][20],longnum[],intn);
voidnumberlh(floatscore[],charname[][20],longnum[],intn);
voidnamepx(floatscore[],charname[][20],longnum[],intn);
intnumber(floatscore[],charname[][20],longnum[],intn,longx);
intFindname(charname[][20],longnum[],floatscore[],intn);
void
Fenxi(floatscore[],intn);
voidprint(longnum[],floatscore[],charname[][20],intn);
intn,i,m,pos,po,k;
char
name[ARR_SIZE][20];
floatscore[20];
longnum[40],x;
floattotalscore;
/*输入学生信息*/
num[i]);
gets(name[i]);
/*打印菜单*/
/*设置循环是可以重复查询*/
do
m);
switch(m)
case2:
totalscore=0;
%.1f\nTheaveragescoreis:
tota
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 语言 学生 管理 系统 大典