當前位置:首頁 » 成績查詢 » 簡單c語言高考成績排名系統

簡單c語言高考成績排名系統

發布時間: 2021-02-14 01:59:27

1. 用C語言編程實現一個簡單的學生成績管理系統

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<memory.h>

typedefstructstudent
{
charnum[16];
charname[20];
floatscore[4];
structstudent*next;
}stu;

stu*head; //鏈頭指針

stu*create() //創建鏈表,從文件讀取信息
{
printf("Readingstudentinformation: ");
stu*p=NULL; //指針,指向個待插入的結點
stu*q=NULL; //指針,用於在其後插入結點
head=NULL; //一開始鏈表為空
FILE*r=fopen("input.dat","r");
p=(stu*)malloc(sizeof(stu));
while(fscanf(r,"%s%s%f%f%f",p->num,p->name,&p->score[0],&p->score[1],&p->score[2])!=EOF)
{
p->score[3]=(p->score[0]+p->score[1]+p->score[2])/3.0;
fprintf(stdout,"%s %s %g %g %g %.2f ",p->num,p->name,p->score[0],p->score[1],p->score[2],p->score[3]);
p->next=NULL;
if(head==NULL) //head為空,要插入第一個
{
head=p;
} //結點,讓頭指針指向結點p
else
{ //否則不是頭結點,應將p結點
q->next=p; //插入到q結點的後面
}
q=p; //q指向當前最後一個結點
p=(stu*)malloc(sizeof(stu));
}
fclose(r);
if(head!=NULL)
{
q->next=NULL; //讓q所指的最後一個結點的指針域為空說明這已是鏈尾了
}
returnhead; //返回頭指針
}

voidsort(stu**head,intn)
{
FILE*w=NULL;
if(n==0)
{
w=fopen("sortByMath.dat","w");
}
elseif(n==1)
{
w=fopen("sortByEnglish.dat","w");
}
elseif(n==2)
{
w=fopen("sortByComputer.dat","w");
}
elseif(n==3)
{
w=fopen("sortByAvg.dat","w");
}
stu*q,*t,*p;
stu*new_head=newstu;
new_head->next=*head;
p=new_head;
t=NULL;
while(t!=new_head->next)
{
p=new_head;
q=p->next;
while(q->next!=t)
{
if((p->next->score[n])<(q->next->score[n]))
{
p->next=q->next;
q->next=q->next->next;
p->next->next=q;
}
p=p->next;
q=p->next;
}
t=q;
}
*head=new_head->next;


p=*head;
q=p->next;
printf("學號 姓名 數學 英語 計算機 平均成績 ");
intgrade=1;
while(p!=NULL)
{
fprintf(w,"%s %s %g %g %g %.2f %d ",
p->num,p->name,p->score[0],p->score[1],p->score[2],p->score[3],grade);
fprintf(stdout,"%s %s %g %g %g %.2f %d ",
p->num,p->name,p->score[0],p->score[1],p->score[2],p->score[3],grade);
if(q!=NULL&&q->score[3]<p->score[3])grade+=1;
p=p->next;
if(q!=NULL)q=q->next;
}
printf(" ");
fclose(w);
}

voidcount(stu*head)
{
floatcnt[4][8];
inti,j;
for(i=0;i<4;i++)
{
for(j=0;j<8;j++)
{
if(j!=2)cnt[i][j]=0;
elsecnt[i][j]=100;
}
}
stu*r=head;
while(r!=NULL)
{
r=r->next;
}
}
intmain()
{
head=create();
printf("Sortingbyaveragescore: ");
sort(&head,3);

system("pause");
return0;
}

2. 用C語言製作「高考分數查詢系統」

前幾天一直沒上。沒看見 。我也不是學計算機的 ,也和你一樣, 我試試吧。
#include<stdio.h>
main()
{
char na[30];
int yuwen,shuxue,yingyu,zonghe,zongfen;
yuwen=95;
shuxue=98;
yingyu=105;
zonghe=196;
zongfen=0;
zongfen=yuwen+shuxue+yingyu+zonghe;
printf("please input your name:");
scanf("%s",na);
printf("your scores is:");
printf("yuwen=%d,shuxue=%d,yingyu=%d,zonghe=%d,zongfen=%d\n",yuwen,shuxue,yingyu,zonghe,zongfen);
}
你看這回個答怎麼樣?很簡單,但你都沒給什麼要求,我也不知道該往哪加深。我能力有限 目前還想不出用什麼辦法可以使分數隨機改變,只能寫固定的了。
如果不滿意再告訴我,再把想改進的地方和我說,我可以幫你想想。

3. c語言學生成績統計系統

#include<stdio.h>
#include<string.h>
#define NUM1 3
#define NUM2 3
#define NUM3 3
struct student
{
char name[10];
int score;
}c1[NUM1],c2[NUM2],c3[NUM3];//定義三個結構體數組
int i,j,k;
FILE *fp1_order,*fp2_order,*fp3_order;/*/定義文件指針
/*/=========================================================
void main(void)
{
void data_in(void);
void score_order(void);
void save_in(void);
void save_order(void);
void open_order(void);
printf("******************************學生成績文件管理******************************\n");
printf(" programmer:喻翔\n\n");
printf("一、輸入三個班的學生姓名和成績:\n\n");
data_in();
printf("\n\n\n");
printf("############################################################################\n\n");
printf("二、保存輸入的姓名和成績:\n\n");
save_in();
printf("\n\n\n\n");
printf("############################################################################\n\n");
printf("三、排名並保存姓名和成績:\n\n");
score_order();
save_order();
printf("\n\n\n\n");
printf("############################################################################\n\n");
printf("四、驗證排名後保存的文件:\n\n");
open_order();
printf("\n\n\n");
}
//=============================================================
void data_in(void)
{
printf("請輸入一班%d個學生的姓名和成績:\n",NUM1);
for(i=0;i<NUM1;i++)
{
printf("第%d個:",i+1);
scanf("%s %d",c1[i].name,&c1[i].score);
}
printf("\n\n\n請輸入二班%d個學生的姓名和成績:\n",NUM2);
for(j=0;j<NUM2;j++)
{
printf("第%d個:",j+1);
scanf("%s %d",c2[j].name,&c2[j].score);
}
printf("\n\n\n請輸入三班%d個學生的姓名和成績:\n",NUM3);
for(k=0;k<NUM3;k++)
{
printf("第%d個:",k+1);
scanf("%s %d",c3[k].name,&c3[k].score);
}
}
//=============================================================
void score_order(void)
{
int h,t;
char s[10];
for(h=0;h<NUM1-1;h++)
for(i=0;i<NUM1-1-h;i++)
if(c1[i].score<c1[i+1].score)
{
t=c1[i].score;
c1[i].score=c1[i+1].score;
c1[i+1].score=t;
strcpy(s,c1[i].name);//一定要使用strcpy()函數
strcpy(c1[i].name,c1[i+1].name);
strcpy(c1[i+1].name,s);
}
for(h=0;h<NUM2-1;h++)
for(j=0;j<NUM2-1-h;j++)
if(c2[j].score<c2[j+1].score)
{
t=c2[j].score;
c2[j].score=c2[j+1].score;
c2[j+1].score=t;
strcpy(s,c2[j].name);
strcpy(c2[j].name,c2[j+1].name);
strcpy(c2[j+1].name,s);
}

for(h=0;h<NUM3-1;h++)
for(k=0;k<NUM3-1-h;k++)
if(c3[k].score<c3[k+1].score)
{
t=c3[k].score;
c3[k].score=c3[k+1].score;
c3[k+1].score=t;
strcpy(s,c3[k].name);
strcpy(c3[k].name,c3[k+1].name);
strcpy(c3[k+1].name,s);
}
}
//=====================================================================
void save_in(void)
{
FILE *fp1_in,*fp2_in,*fp3_in;
if((fp1_in=fopen("data1_in.dat","wb"))==NULL)
{
printf("The file can not open!\n");
return;
}
for(i=0;i<NUM1;i++)
if(fwrite(&c1[i],sizeof(struct student),1,fp1_in)!=1)
{
printf("file write error!\n");
return;
}
fclose(fp1_in);
if((fp2_in=fopen("data2_in.dat","wb"))==NULL)
{
printf("The file can not open!\n");
return;
}
for(j=0;j<NUM2;j++)
if(fwrite(&c2[j],sizeof(struct student),1,fp2_in)!=1)
{
printf("file write error!\n");
return;
}
fclose(fp2_in);
if((fp3_in=fopen("data3_in.dat","wb"))==NULL)
{
printf("The file can not open!\n");
return;
}
for(k=0;k<NUM3;k++)
if(fwrite(&c3[k],sizeof(struct student),1,fp3_in)!=1)
{
printf("file write error!\n");
return;
}
fclose(fp3_in);
}

//==============================================================
void save_order(void)
{
if((fp1_order=fopen("data1_order.dat","wb"))==NULL)
{
printf("The file can not open!\n");
return;
}
for(i=0;i<NUM1;i++)
if(fwrite(&c1[i],sizeof(struct student),1,fp1_order)!=1)
{
printf("file write error!\n");
return;
}
fclose(fp1_order);
if((fp2_order=fopen("data2_order.dat","wb"))==NULL)
{
printf("The file can not open!\n");
return;
}
for(j=0;j<NUM2;j++)
if(fwrite(&c2[j],sizeof(struct student),1,fp2_order)!=1)
{
printf("file write error!\n");
return;
}
fclose(fp2_order);
if((fp3_order=fopen("data3_order.dat","wb"))==NULL)
{
printf("The file can not open!\n");
return;
}
for(k=0;k<NUM3;k++)
if(fwrite(&c3[k],sizeof(struct student),1,fp3_order)!=1)
{
printf("file write error!\n");
return;
}
fclose(fp3_order);
}

//=============================================================
void open_order(void)
{
fp1_order=fopen("data1_order.dat","rb");
printf("一班的成績排名如下:\n");
printf("名次 姓名 C語言成績\n");
printf("----------------------------------------\n");
for(i=0;i<NUM1;i++)
{
printf("第%d名 ",i+1);
fread(&c1[i],sizeof(struct student),1,fp1_order);
printf("%s %d\n",c1[i].name,c1[i].score);
}
fp2_order=fopen("data2_order.dat","rb");
printf("\n\n\n二班的成績排名如下:\n");
printf("名次 姓名 C語言成績\n");
printf("----------------------------------------\n");
for(j=0;j<NUM2;j++)
{
printf("第%d名 ",j+1);
fread(&c2[j],sizeof(struct student),1,fp2_order);
printf("%s %d\n",c2[j].name,c2[j].score);
}
fp3_order=fopen("data3_order.dat","rb");
printf("\n\n\n三班的成績排名如下:\n");
printf("名次 姓名 C語言成績\n");
printf("----------------------------------------\n");
for(k=0;k<NUM3;k++)
{
printf("第%d名 ",k+1);
fread(&c3[k],sizeof(struct student),1,fp3_order);
printf("%s %d\n",c3[k].name,c3[k].score);
}
}

4. 如何用c語言設計一個成績排名系統

#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<string.h>
struct student{
int id;
char name[10];
int age;
char sex[10];
char birthady[20];
int tel;
char nativeplace[50];
}st[50];
int i=0;
void shuru() {
char a;
do{
printf("\n請輸入學號:");
scanf("%d",&st[i].id);
fflush(stdin);
printf("\n請輸入姓名:");
gets(st[i].name);
printf("\n") ;
printf("請輸入年齡:");
scanf("%d",&st[i].age);
fflush(stdin);
printf("\n請輸入姓別:");
gets(st[i].sex);
fflush(stdin);
printf("\n請輸入生日:");
gets(st[i].birthady);
printf("\n請輸入電話:");
scanf("%d",&st[i].tel);
fflush(stdin);
printf("\n請輸入籍貫:");
gets(st[i].nativeplace);
printf("\n是否繼續輸入另外一個學生信息?(y/n)");
fflush(stdin);
a=getchar();
i++;
}while(a=='y' && i<=50);

}

void xianshi()
{
int j;
printf("\t學號\t姓名\t年齡\t性別\t生日\t\t電話\t籍貫\n");
for(j=0;j<i;j++)
printf("\t%d\t%s\t%d\t%s\t%s\t%d\t%s\n",
st[j].id,st[j].name,st[j].age,st[j].sex,st[j].birthady,st[j].tel,st[j].nativeplace);
}

void paixu() //按年齡從大到小排序函數
{
int j,k;
int temp;
for(j=0;j<i;j++)
{
for(k=0;k<i-1-j;k++)
{
if(st[k].age<st[k+1].age)
{
temp=st[k].age;
st[k].age=st[k+1].age;
st[k+1].age=temp;
}
}
}
xianshi(); //排序後輸出
}

void chazhao()
{
int m;
char name[20],b;
do
{
printf("\n請輸入想查找的學生姓名:");
fflush(stdin);
gets(name);
for(m=0;m<i;m++)
{
if(strcmp(name,st[m].name)==0)
{
printf("\n\t您查找的學生在第%d個位置找到了!!!\n",m+1);
break;
}
}
if(m>=20)
printf("\n\t沒有找到這個學生!!!\n");
else
{
printf("\t學號\t姓名\t年齡\t性別\t生日\t\t電話\t籍貫\n");
printf("\t%d\t%s\t%d\t%s\t%s\t%d\t%s\n",
st[m].id,st[m].name,st[m].age,st[m].sex,st[m].birthady,st[m].tel,st[m].nativeplace);
}
printf("\n是否查找另一個學生的信息?(y/n)");
fflush(stdin);
b=getchar();

}while(b=='y');

}

void shanchu()
{
char name[20],c;
int a,b;
do
{
printf("\n請輸入要刪除的學生姓名:\n");
fflush(stdin);
gets(name);
for(a=0;a<i;a++)
{
if(strcmp(name,st[a].name)==0)
break;
}

for(b=a;b<i;b++)
st[b]=st[b+1];
if(a>i)
printf("\t沒有找到這個學生!!!\n");

else
{
i--;
xianshi();
}

printf("\n是否繼續刪除另一個學生信息?(y/n) ");
fflush(stdin);
c=getchar();
}while(c=='y');

}

void charu()
{
shuru();
paixu();

}

void main() //主函數
{
int change;
do{
system("cls");
printf("============================學生信息管理系統===================================\n");
printf("\t\t一: 輸入學生信息\n");
printf("\t\t二: 顯示學生信息\n");
printf("\t\t三: 查找學生信息\n");
printf("\t\t四: 刪除學生信息\n");
printf("\t\t五: 插入學生信息\n");
printf("\t\t六: 退出程序\n");
fflush(stdin);
printf("\t\t請輸入功能選項:");
scanf("%d",&change);
switch(change)
{
case 1:
shuru(); break;
case 2:
xianshi(); break;
case 3:
chazhao(); break;
case 4:
shanchu(); break;
case 5:
charu(); break;
case 6:
break;
}
getch();
}while(change!=6);
}

5. c語言 學生成績排名

#include<stdio.h>
voidsetList(int*a,intlen);
voidprintfList(int*a,intlen);
voidpxList(int*a,intlen);
voidinsertList(int*a,intlen);
voidfanList(int*a,intlen);
intmain()
{
inta[11];//1.定義一個數組a[11],用以存放學生的成績。
setList(a,10);//2.從鍵盤輸入10個學生成績。
pxList(a,10);//3.採用選擇法,將學生成績按照從高到低進行排序。
printfList(a,10);
insertList(a,10);//4.再輸入一個學生的成績,將此成績按照排序規律插入原學生成績數組。
printfList(a,11);
fanList(a,11);//5.將排好序的成績單進行反序存放,即原來是從高到低,現在改為從低到高排列
printfList(a,11);
return0;
}
voidsetList(int*a,intlen)//輸入
{
inti;
printf("請輸入%d個學生成績 ",len);
for(i=0;i<len;i++)
scanf("%d",&a[i]);
}
voidprintfList(int*a,intlen)//列印數組
{
inti;
printf(" ---列印數組--- ");
for(i=0;i<len;i++)
printf("%d",a[i]);

}
voidpxList(int*a,intlen)//選擇排序
{
inti,j;
printf(" ---從大到小排序--- ");
for(i=0;i<len-1;i++)
for(j=i+1;j<len;j++)
if(a[i]<a[j])
{
a[j]^=a[i];
a[i]^=a[j];
a[j]^=a[i];
}
}
voidinsertList(int*a,intlen)//插入數組
{
printf(" ---插入數組--- ");
printf("輸入要插入的數:");
scanf("%d",&a[len]);
pxList(a,11);
}
voidfanList(int*a,intlen)//數組反向存儲
{
int*p0,*p1;
p0=a;
p1=&a[len-1];
while(p0<p1)
{
*p0^=*p1;
*p1^=*p0;
*p0^=*p1;
p0++;
p1--;
}

}

6. 用C語言編程 統計學生成績 排名 查詢能輸出名次(最好能循環輸入學生成績或者能循環查詢)

如一樓所言,沒有多少人有這個時間來給你寫.
如果你只是為了交作業,建議你端正你的學習態度。
如果你是一名學生成績管理人員,建議稍微學一下Office,用Office進行學生成績查詢排名是很快的.

7. 成績排行系統C語言

#include<stdio.h>
#definen20
intmain()
{
charname[n],c;
inti,j,t,score[n];
c='a';
for(i=0;i<n;i++)//初始化姓名
{
版name[i]=c++;
}
for(i=0;i<n;i++)//輸入從權a到…t對應的成績
scanf("%d",&score[i]);
for(i=0;i<n-1;i++)//升序排列
{
for(j=i;j<n-1-i;j++)
{
if(score[j+1]<score[j])//注意,成績與姓名要同時改變
{
t=score[j+1];
score[j+1]=score[j];
score[j]=t;
c=name[j+1];
name[j+1]=name[j];
name[j]=c;
}
}
}
for(i=n-1,j=1;i>=n-6;i--,j++)
printf("姓名為:%c的成績為:%d,排名第%d名 ",name[i],score[i],j);
return0;
}

這是經過調試成功的代碼,希望採納。

8. c語言學生成績統計系統,

#include<stdio.h>
#include<string.h>

#define NUM1 3
#define NUM2 3
#define NUM3 3

struct student
{
char name[10];
int score;
}c1[NUM1],c2[NUM2],c3[NUM3];//定義三個結構體數組
int i,j,k;
FILE *fp1_order,*fp2_order,*fp3_order;//定義文件指針
//=========================================================
void main(void)
{
void data_in(void);
void score_order(void);
void save_in(void);
void save_order(void);
void open_order(void);
printf("******************************學生成績文件管理******************************\n");
printf(" programmer:喻翔\n\n");
printf("一、輸入三個班的學生姓名和成績:\n\n");
data_in();
printf("\n\n\n");
printf("############################################################################\n\n");
printf("二、保存輸入的姓名和成績:\n\n");
save_in();
printf("\n\n\n\n");
printf("############################################################################\n\n");
printf("三、排名並保存姓名和成績:\n\n");
score_order();
save_order();
printf("\n\n\n\n");
printf("############################################################################\n\n");
printf("四、驗證排名後保存的文件:\n\n");
open_order();
printf("\n\n\n");
}
//============================================
void data_in(void)
{
printf("請輸入一班%d個學生的姓名和成績:\n",NUM1);
for(i=0;i<NUM1;i++)
{
printf("第%d個:",i+1);
scanf("%s %d",c1[i].name,&c1[i].score);
}
printf("\n\n\n請輸入二班%d個學生的姓名和成績:\n",NUM2);
for(j=0;j<NUM2;j++)
{
printf("第%d個:",j+1);
scanf("%s %d",c2[j].name,&c2[j].score);
}
printf("\n\n\n請輸入三班%d個學生的姓名和成績:\n",NUM3);
for(k=0;k<NUM3;k++)
{
printf("第%d個:",k+1);
scanf("%s %d",c3[k].name,&c3[k].score);
}
}
//=============================================================
void score_order(void)
{
int h,t;
char s[10];
for(h=0;h<NUM1-1;h++)
for(i=0;i<NUM1-1-h;i++)
if(c1[i].score<c1[i+1].score)
{
t=c1[i].score;
c1[i].score=c1[i+1].score;
c1[i+1].score=t;
strcpy(s,c1[i].name);//一定要使用strcpy()函數
strcpy(c1[i].name,c1[i+1].name);
strcpy(c1[i+1].name,s);
}
for(h=0;h<NUM2-1;h++)
for(j=0;j<NUM2-1-h;j++)
if(c2[j].score<c2[j+1].score)
{
t=c2[j].score;
c2[j].score=c2[j+1].score;
c2[j+1].score=t;
strcpy(s,c2[j].name);
strcpy(c2[j].name,c2[j+1].name);
strcpy(c2[j+1].name,s);
}

for(h=0;h<NUM3-1;h++)
for(k=0;k<NUM3-1-h;k++)
if(c3[k].score<c3[k+1].score)
{
t=c3[k].score;
c3[k].score=c3[k+1].score;
c3[k+1].score=t;
strcpy(s,c3[k].name);
strcpy(c3[k].name,c3[k+1].name);
strcpy(c3[k+1].name,s);
}
}
//=====================================================================
void save_in(void)
{
FILE *fp1_in,*fp2_in,*fp3_in;
if((fp1_in=fopen("data1_in.dat","wb"))==NULL)
{
printf("The file can not open!\n");
return;
}
for(i=0;i<NUM1;i++)
if(fwrite(&c1[i],sizeof(struct student),1,fp1_in)!=1)
{
printf("file write error!\n");
return;
}
fclose(fp1_in);
if((fp2_in=fopen("data2_in.dat","wb"))==NULL)
{
printf("The file can not open!\n");
return;
}
for(j=0;j<NUM2;j++)
if(fwrite(&c2[j],sizeof(struct student),1,fp2_in)!=1)
{
printf("file write error!\n");
return;
}
fclose(fp2_in);
if((fp3_in=fopen("data3_in.dat","wb"))==NULL)
{
printf("The file can not open!\n");
return;
}
for(k=0;k<NUM3;k++)
if(fwrite(&c3[k],sizeof(struct student),1,fp3_in)!=1)
{
printf("file write error!\n");
return;
}
fclose(fp3_in);
}

//==============================================================
void save_order(void)
{
if((fp1_order=fopen("data1_order.dat","wb"))==NULL)
{
printf("The file can not open!\n");
return;
}
for(i=0;i<NUM1;i++)
if(fwrite(&c1[i],sizeof(struct student),1,fp1_order)!=1)
{
printf("file write error!\n");
return;
}
fclose(fp1_order);
if((fp2_order=fopen("data2_order.dat","wb"))==NULL)
{
printf("The file can not open!\n");
return;
}
for(j=0;j<NUM2;j++)
if(fwrite(&c2[j],sizeof(struct student),1,fp2_order)!=1)
{
printf("file write error!\n");
return;
}
fclose(fp2_order);
if((fp3_order=fopen("data3_order.dat","wb"))==NULL)
{
printf("The file can not open!\n");
return;
}
for(k=0;k<NUM3;k++)
if(fwrite(&c3[k],sizeof(struct student),1,fp3_order)!=1)
{
printf("file write error!\n");
return;
}
fclose(fp3_order);
}

//=============================================================
void open_order(void)
{
fp1_order=fopen("data1_order.dat","rb");
printf("一班的成績排名如下:\n");
printf("名次 姓名 C語言成績\n");
printf("----------------------------------------\n");
for(i=0;i<NUM1;i++)
{
printf("第%d名 ",i+1);
fread(&c1[i],sizeof(struct student),1,fp1_order);
printf("%s %d\n",c1[i].name,c1[i].score);
}
fp2_order=fopen("data2_order.dat","rb");
printf("\n\n\n二班的成績排名如下:\n");
printf("名次 姓名 C語言成績\n");
printf("----------------------------------------\n");
for(j=0;j<NUM2;j++)
{
printf("第%d名 ",j+1);
fread(&c2[j],sizeof(struct student),1,fp2_order);
printf("%s %d\n",c2[j].name,c2[j].score);
}
fp3_order=fopen("data3_order.dat","rb");
printf("\n\n\n三班的成績排名如下:\n");
printf("名次 姓名 C語言成績\n");
printf("----------------------------------------\n");
for(k=0;k<NUM3;k++)
{
printf("第%d名 ",k+1);
fread(&c3[k],sizeof(struct student),1,fp3_order);
printf("%s %d\n",c3[k].name,c3[k].score);
}
}

9. c語言 高考分數統計系統

#include <iostream.h>
#include <fstream.h>
#include <stdlib.h>
#include <string.h>
#include <stdio.h>

//定義一個用戶結構,用來存放登錄用戶的信息
struct user
{
char name[10];
char pwd[10];
int level;
};
//定義學生信息結構,用來存儲學生信息
struct student
{
char name[10];
char banji[10];
double yuwen;
double shuxue;
double yingyu;
};

//全局變數,用來記錄用戶登錄的次數
int count=-1;
//全局變數,用來記錄成功登錄的用戶的許可權
int quan;
//定義全局變數記錄用戶選擇
int jieshou;

//登錄函數
void login();
//主菜單函數
void main_menu();
//添加學生信息函數
void add();
//查詢學生信息函數
void search();
//個人信息查詢函數
void geren();
//科目信息查詢函數
void kemu();
//修改學生信息函數
void change();
//刪除學生信息函數
void del();
//顯示學生信息函數
void show(student x);

//學生信息寫入函數
void xieru(char wen[],student t);
//讀取學生信息的函數,返回一個學生結構的實例
student _stu(char wen[],char x[]);
//學生信息從原文件到臨時文件的轉化
void zhuanhua(char wen[],char ming[]);
//讀取科目成績信息的函數,返回一個雙精度小數
double _kemu(char wen[],int x,int y);
//讀取用戶信息的函數,返回一個用戶結構的實例
user _user(char wen[],char x[]);

//主函數
void main(void)
{
login();
}

//登錄函數
void login()
{
//登錄次數累加,滿3次退出程序
count=count+1;
if(count==3)
{
cout<<"您已經三次登錄失敗,系統退出!"<<endl;
exit(0);
}

//局部變數,用來記錄用戶輸入的用戶名和密碼
char ming[10];
char mima[10];

cout<<"歡迎使用本系統!"<<endl;
cout<<"請輸入您的用戶名:"<<endl;
cin>>ming;
cout<<"請輸入您的密碼:"<<endl;
cin>>mima;

//調用讀取用戶信息的函數,將接受的用戶名作為參數傳遞
//聲明一個臨時的用戶結構實例,接受函數返回值
user temp=_user("user.txt",ming);

//判斷返回的實例信息
if(temp.level<0)
{
//返回非法信息重新調用登錄函數
login();
}
else
{
//返回合法信息進行密碼判斷
if(strcmp(temp.pwd,mima)!=0)
{
//密碼不正確重新調用登錄信息
cout<<"密碼不正確!"<<endl;
login();
}
else
{
//密碼正確使用全局變數記錄用戶許可權,調用主菜單函數
quan=temp.level;
main_menu();
}
}
}

//主菜單函數
void main_menu()
{
//每次調用前清屏
getchar();
system("cls");

cout<<endl<<endl;
cout<<" ****************************"<<endl;
cout<<" 學 生 管 理"<<endl;
cout<<" ****************************"<<endl;
cout<<endl;
cout<<" 1.添加學生信息"<<endl<<endl;
cout<<" 2.查詢學生信息"<<endl<<endl;
cout<<" 3.修改學生信息"<<endl<<endl;
cout<<" 4.刪除學生信息"<<endl<<endl;
cout<<" 5.退出"<<endl;
cout<<endl;
cout<<"***************************************"<<endl;

cout<<" 請選擇:";
cin>>jieshou;
//判斷用戶選擇及許可權,調用相應函數
if(jieshou==1 && quan==0)
{
add();
}
else if(jieshou==2)
{
search();
}
else if(jieshou==3 && quan==0)
{
change();
}
else if(jieshou==4 && quan==0)
{
del();
}
else if(jieshou==5)
{
cout<<"謝謝使用!"<<endl;
exit(0);
}
else
{
cout<<"輸入有誤,請確認您的許可權重新輸入。"<<endl;
main_menu();
}

}

//添加學生信息函數
void add()
{
//聲明一個臨時學生實例
student temp;

//用臨時學生實例接受用戶輸入的信息
cout<<"請輸入學生姓名:"<<endl;
cin>>temp.name;
cout<<"請輸入學生班級:"<<endl;
cin>>temp.banji;
cout<<"請輸入學生語文成績:"<<endl;
cin>>temp.yuwen;
cout<<"請輸入學生數學成績:"<<endl;
cin>>temp.shuxue;
cout<<"請輸入學生外語成績:"<<endl;
cin>>temp.yingyu;

//調用學生信息寫入函數
xieru("student.txt",temp);

//詢問是否繼續添加
while(1==1)
{
cout<<"是否繼續輸入:1 繼續 2 返回"<<endl;
cin>>jieshou;

//判斷用戶選擇,調用相應函數
if(jieshou==1)
{
add();
break;
}
else if(jieshou==2)
{
main_menu();
break;
}
else
{
cout<<"輸入有誤,請重新輸入。"<<endl;
}
}

}

//查詢學生信息函數
void search()
{
getchar();
//調用函數前清屏
system("cls");

cout<<" 信息查詢"<<endl;
cout<<" ****************************"<<endl;
cout<<endl;
cout<<" 1.學生信息查詢"<<endl<<endl;
cout<<" 2.科目信息查詢"<<endl<<endl;
cout<<" 3.返回"<<endl;
cout<<endl;
cout<<" *****************************"<<endl;

cout<<" 請選擇:";
cin>>jieshou;
//根據用戶輸入調用相應函數
if(jieshou==1)
{
geren();
}
else if(jieshou==2)
{
kemu();
}
else if(jieshou==3)
{
main_menu();
}
else
{
cout<<"輸入有誤,請重新輸入。"<<endl;
search();
}
}

//個人信息查詢函數
void geren()
{
//定義臨時學生實例
student temp;
//定義臨時字元串接受用戶輸入的名字
char ming[10];

//接收用戶輸入的名字
cout<<"請輸入您要查詢學生的姓名:"<<endl;
cin>>ming;

//按照輸入的學生姓名查找,並返回實例
temp=_stu("student.txt",ming);
//判斷返回的實例並調用相應函數
if(strcmp(temp.name,"不存在")!=0)
{
while(1==1)
{
cout<<"請輸入您要查詢的科目:1、語文 2、數學 3、英語"<<endl;
cin>>jieshou;
if(jieshou==1)
{
cout<<temp.name<<"同學的語文成績:"<<temp.yuwen<<endl;
break;
}
else if(jieshou==2)
{
cout<<temp.name<<"同學的數學成績:"<<temp.shuxue<<endl;
break;
}
else if(jieshou==3)
{
cout<<temp.name<<"同學的英語成績:"<<temp.yingyu<<endl;
break;
}
else
{
cout<<"輸入有誤,請重新輸入。"<<endl;
}
}
}

//返回查詢模塊界面
search();

}

//科目信息查詢函數
void kemu()
{
//定義局部變數,記錄用戶輸入的科目及類別
int ke;
int lei;
cout<<"您要查詢哪門科目:1、語文 2、數學 3、外語 0、返回"<<endl;
cin>>ke;

//判斷用戶輸入的科目是否合法
if(ke==0)
{
search();
}
else if(ke<0 || ke>3)
{
cout<<"輸入錯誤,請重新選擇。"<<endl;
}

cout<<"您要查詢該科目的什麼分數:1、總分 2、平均分 3、最高分 4、最低分 0、返回"<<endl;
cin>>lei;

//判斷用戶輸入的類別是否合法
if(lei==0)
{
kemu();
}
else if(lei<0 || lei>4)
{
cout<<"輸入錯誤,請重新選擇。"<<endl;
}

//根據用戶輸入調用函數
cout<<"您要查詢的數據是:"<<_kemu("student.txt",ke,lei)<<endl;
//返回查詢界面
search();
}

//修改學生信息函數
void change()
{
//定義臨時字元串接受用戶輸入的名字
char ming[10];
//定義臨時學生實例
student temp;

//接收用戶輸入的名字
cout<<"請輸入您要修改學生的姓名:"<<endl;
cin>>ming;

//按照輸入的學生姓名查找,並返回實例
temp=_stu("student.txt",ming);
//判斷返回的實例並調用相應函數
if(strcmp(temp.name,"不存在")!=0)
{
double fen;
//顯示要修改學生信息
show(temp);
//轉化學生信息數據
zhuanhua("student.txt",temp.name);

while(1==1)
{
//詢問修改科目及成績
cout<<"您要修改該同學的哪個成績: 1、語文 2、數學 3、英語"<<endl;
cin>>jieshou;
cout<<"請輸入修改後的成績:"<<endl;
cin>>fen;
//判斷和修改
if(jieshou==1)
{
temp.yuwen=fen;
break;
}
else if(jieshou==2)
{
temp.shuxue=fen;
break;
}
else if(jieshou==3)
{
temp.yuwen=fen;
break;
}
else
{
cout<<"輸入有誤,請重新輸入。"<<endl;
}
}
//追加寫入修改後的學生成績
xieru("lin.txt",temp);
//刪除原文件
remove("student.txt");
//重命名臨時文件
rename("lin.txt","student.txt");
}
//返回主界面
main_menu();

}

//刪除學生信息函數
void del()
{
//定義臨時字元串接受用戶輸入的名字
char ming[10];
//定義臨時學生實例
student temp;

//接收用戶輸入的名字
cout<<"請輸入您要刪除學生的姓名:"<<endl;
cin>>ming;

//按照輸入的學生姓名查找,並返回實例
temp=_stu("student.txt",ming);
//判斷返回的實例並調用相應函數
if(strcmp(temp.name,"不存在")!=0)
{

//顯示要修改學生信息
show(temp);

while(1==1)
{
//刪除操作確認
cout<<"您確定要刪除該學生信息嗎: 1、確定 2、取消"<<endl;
cin>>jieshou;

//根據用戶輸入調用相應函數
if(jieshou==1)
{
//轉化學生信息數據
zhuanhua("student.txt",temp.name);
//刪除原文件
remove("student.txt");
//重命名臨時文件
rename("lin.txt","student.txt");
break;
}
else if(jieshou==2)
{
main_menu();
break;
}
else
{
cout<<"您的輸入有誤,請重新輸入!"<<endl;
}
}
}
//返回主界面
main_menu();
}

//顯示學生信息函數
void show(student x)
{
cout<<"學生姓名:"<<x.name<<endl;
cout<<"學生班級:"<<x.banji<<endl;
cout<<"學生語文成績:"<<x.yuwen<<endl;
cout<<"學生數學成績:"<<x.shuxue<<endl;
cout<<"學生外語成績:"<<x.yingyu<<endl;
}

//讀取科目成績信息的函數,返回一個雙精度小數
double _kemu(char wen[],int x,int y)
{
//聲明局部變數保存總分、最高分、最低分、以及人數
double sum=0;
double max=0;
double min=100;
double count=0;
//聲明一個臨時學生結構實例
student temp;

//文件操作,打開指定文件
ifstream fin;
fin.open(wen);

//文件打開失敗提示
if(fin.fail())
{
cout<<"打開文件失敗!"<<endl;
exit(0);
}

//逐條讀取文件中用戶信息,保存到臨時用戶實例中
while(fin>>temp.name>>temp.banji>>temp.yuwen>>temp.shuxue>>temp.yingyu)
{
//人數累加
count+=1;
//判斷傳遞過來的課程,進行分數的計算
if(x==1)
{
sum=sum+temp.yuwen;
if(temp.yuwen>max)
{
max=temp.yuwen;
}
if(temp.yuwen<min)
{
min=temp.yuwen;
}
}
else if(x==2)
{
sum=sum+temp.shuxue;
if(temp.shuxue>max)
{
max=temp.shuxue;
}
if(temp.shuxue<min)
{
min=temp.shuxue;
}
}
else
{
sum=sum+temp.yingyu;
if(temp.yingyu>max)
{
max=temp.yingyu;
}
if(temp.yingyu<min)
{
min=temp.yingyu;
}
}
}

//根據傳遞過來的類別決定相應的返回值
if(y==1)
{
return sum;
}
else if(y==2)
{
return sum/count;
}
else if(y==3)
{
return max;
}
else
{
return min;
}
}

//學生信息寫入函數
void xieru(char wen[],student t)
{
//文件操作,打開指定文件
ofstream fout;
fout.open(wen,ios::app);

//文件打開失敗提示
if(fout.fail())
{
cout<<"打開文件失敗!"<<endl;
exit(0);
}

//寫入傳遞過來的學生實例信息
fout<<t.name<<endl;
fout<<t.banji<<endl;
fout<<t.yuwen<<endl;
fout<<t.shuxue<<endl;
fout<<t.yingyu<<endl;

//文件關閉
fout.close();
}

//讀取學生信息的函數
student _stu(char wen[],char x[])
{
//聲明一個臨時學生結構實例
student temp;

//文件操作,打開指定文件
ifstream fin;
fin.open(wen);

//文件打開失敗提示
if(fin.fail())
{
cout<<"打開文件失敗!"<<endl;
exit(0);
}

//逐條讀取文件中用戶信息,保存到臨時用戶實例中
while(fin>>temp.name>>temp.banji>>temp.yuwen>>temp.shuxue>>temp.yingyu)
{
//將讀取的學生姓名和傳遞過來的名字進行比較
if(strcmp(x,temp.name)==0)
{
//比較成功中斷循環
break;
}
}
//文件尾判斷
//如果循環自然結束,表示沒有相同的學生名字
if(fin.eof())
{
//返回非法實例信息
cout<<"該學生不存在!"<<endl;
strcpy(temp.name,"不存在");
}
//文件關閉
fin.close();
//返回實例
return temp;
}

//學生信息從原文件到臨時文件的轉化
void zhuanhua(char wen[],char ming[])
{
student temp;

ifstream fin;
fin.open(wen);

if(fin.fail())
{
cout<<"打開文件失敗!"<<endl;
exit(0);
}

while(fin>>temp.name>>temp.banji>>temp.yuwen>>temp.shuxue>>temp.yingyu)
{
if(strcmp(temp.name,ming)!=0)
{
xieru("lin.txt",temp);
}
}

fin.close();
}

//用戶信息讀取函數
user _user(char wen[],char x[])
{
//聲明一個臨時用戶結構實例
user temp;

//文件操作,打開指定文件
ifstream fin;
fin.open(wen);

//文件打開失敗提示
if(fin.fail())
{
cout<<"打開文件失敗!"<<endl;
exit(0);
}

//逐條讀取文件中用戶信息,保存到臨時用戶實例中
while(fin>>temp.name>>temp.pwd>>temp.level)
{
//將讀取的用戶名和傳遞過來的用戶名進行比較
if(strcmp(x,temp.name)==0)
{
//比較成功中斷循環
break;
}
}
//文件尾判斷
//如果循環自然結束,表示沒有相同的用戶名
if(fin.eof())
{
//返回非法實例信息
cout<<"用戶名不存在!"<<endl;
temp.level=-1;
}
//文件關閉
fin.close();
//返回實例
return temp;
}

熱點內容
武漢大學學生會輔導員寄語 發布:2021-03-16 21:44:16 瀏覽:612
七年級學生作文輔導學案 發布:2021-03-16 21:42:09 瀏覽:1
不屑弟高考成績 發布:2021-03-16 21:40:59 瀏覽:754
大學畢業證會有成績單 發布:2021-03-16 21:40:07 瀏覽:756
2017信陽學院輔導員招聘名單 發布:2021-03-16 21:40:02 瀏覽:800
查詢重慶2018中考成績查詢 發布:2021-03-16 21:39:58 瀏覽:21
結業考試成績怎麼查詢 發布:2021-03-16 21:28:40 瀏覽:679
14中醫醫師資格筆試考試成績查分 發布:2021-03-16 21:28:39 瀏覽:655
名著賞析課程標准 發布:2021-03-16 21:27:57 瀏覽:881
北京大學商業領袖高端培訓課程 發布:2021-03-16 21:27:41 瀏覽:919