You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
datouer/班级档案管理系统.c

576 lines
12 KiB

6 years ago
#include<stdio.h>
#include<string.h>
#include<process.h>
#include<stdlib.h>
#include<windows.h>
struct student
{
char id[12];
char name[20];
char sex[3];
int age;
char note[100];
struct student *next;
};
void setposition(int x,int y)
{
HANDLE win = GetStdHandle(STD_OUTPUT_HANDLE);
COORD pos = {x,y};
SetConsoleCursorPosition(win,pos);
}
void menu()
{
system("cls");
printf("\n\n\n\n\n");
printf("\t\t|-------------<2D><EFBFBD><E0BCB6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ϵͳ----------------|\n");
printf("\t\t|\t a.ѧ<><D1A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ¼<CFA2><C2BC> |\n");
printf("\t\t|\t b.ѧ<><D1A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2>ʾ |\n");
printf("\t\t|\t c.ѧ<><D1A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2><EFBFBD><EFBFBD> |\n");
printf("\t\t|\t d.ѧ<><D1A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣɾ<CFA2><C9BE> |\n");
printf("\t\t|\t e.ѧ<><D1A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD>޸<EFBFBD> |\n");
printf("\t\t|\t f.ѧ<><D1A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><CFA2>ѯ |\n");
printf("\t\t|\t g.<2E>˳<EFBFBD>ϵͳ |\n");
printf("\t\t|---------------------------------------------|\n");
}
6 years ago
void Rank()
{
FILE *fp;
void R_Save(struct student *phead);
fp=fopen("D:\\ѧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ.txt","r");
struct student *phead1=NULL;
struct student *pEnd1,*pNew1,*pNow1;
pNew1=(struct student*)malloc(sizeof(struct student));
fscanf(fp,"%s",pNew1->id);
fscanf(fp,"%s",pNew1->name);
fscanf(fp,"%s",pNew1->sex);
fscanf(fp,"%d",&pNew1->age);
fscanf(fp,"%s",pNew1->note);
pNew1->next=NULL;
pEnd1=pNew1;
phead1=pNew1;
while(!feof(fp))
{
pNew1=(struct student*)malloc(sizeof(struct student));
fscanf(fp,"%s",pNew1->id);
fscanf(fp,"%s",pNew1->name);
fscanf(fp,"%s",pNew1->sex);
fscanf(fp,"%d",&pNew1->age);
fscanf(fp,"%s",pNew1->note);
pNew1->next=NULL;
pEnd1->next=pNew1;
pEnd1=pNew1;
}
pNow1 = phead1;
while(pNow1->next->next!=NULL)
{
pNow1 = pNow1->next;
}
pNow1->next=NULL;
fclose(fp);
6 years ago
struct student *i,*j,pTemp2;
6 years ago
if(phead1 == NULL)
return;
for(i = phead1; i->next!=NULL;i = i->next)
{
for(j = phead1; j->next!=NULL; j = j->next)
{
if(strcmp(j->id , j->next->id)>0)
{
6 years ago
strcpy(pTemp2.id,j->id); strcpy(j->id,j->next->id); strcpy(j->next->id,pTemp2.id);
strcpy(pTemp2.name,j->name); strcpy(j->name,j->next->name); strcpy(j->next->name,pTemp2.name);
strcpy(pTemp2.sex,j->sex); strcpy(j->sex,j->next->sex); strcpy(j->next->sex,pTemp2.sex);
strcpy(pTemp2.note,j->note); strcpy(j->note,j->next->note); strcpy(j->next->note,pTemp2.note);
pTemp2.age=j->age; j->age=j->next->age; j->next->age=pTemp2.age;
6 years ago
}
}
}
R_Save(phead1);
}
6 years ago
struct student* Create()
{
struct student* phead=NULL;
struct student *pEnd,*pNew;
pNew=(struct student*)malloc(sizeof(struct student));
printf("\t\t\t######<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѧ<EFBFBD><D1A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ######\n");
printf("\t\t\tѧ<EFBFBD>ţ<EFBFBD>"); scanf("%s",pNew->id);
printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"); scanf("%s",pNew->name);
printf("\t\t\t<EFBFBD>Ա<EFBFBD><EFBFBD><EFBFBD>"); scanf("%s",pNew->sex);
printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD>"); scanf("%d",&pNew->age);
printf("\t\t\t<EFBFBD><EFBFBD>ע<EFBFBD><EFBFBD>");scanf("%s",pNew->note);
pNew->next=NULL;
pEnd=pNew;
phead=pNew;
char key;
printf("\t\t\t<EFBFBD>Ƿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¼<EFBFBD>루y/<2F><><EFBFBD><EFBFBD><E2A3A9>\n");
key = getch();
while(key=='y')
{
pNew=(struct student*)malloc(sizeof(struct student));
printf("\t\t\t#####<23><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѧ<EFBFBD><D1A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ######\n");
printf("\t\t\tѧ<EFBFBD>ţ<EFBFBD>"); scanf("%s",pNew->id);
printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>"); scanf("%s",pNew->name);
printf("\t\t\t<EFBFBD>Ա<EFBFBD><EFBFBD><EFBFBD>"); scanf("%s",pNew->sex);
printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD>"); scanf("%d",&pNew->age);
printf("\t\t\t<EFBFBD><EFBFBD>ע<EFBFBD><EFBFBD>");scanf("%s",pNew->note);
pNew->next=NULL;
pEnd->next=pNew;
pEnd=pNew;
6 years ago
printf("\t\t\t<EFBFBD>Ƿ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¼<EFBFBD>루y/<2F><><EFBFBD><EFBFBD><E2A3A9>\n");
6 years ago
key = getch();
}
struct student *pTemp;
pTemp=phead;
FILE *fp;
if((fp=fopen("D:\\ѧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ.txt","a"))!=NULL)
{
while(pTemp!=NULL)
{
fprintf(fp,"%s ",pTemp->id);
fprintf(fp,"%s ",pTemp->name);
fprintf(fp,"%s ",pTemp->sex);
fprintf(fp,"%d ",pTemp->age);
fprintf(fp,"%s ",pTemp->note);
pTemp=pTemp->next;
}
6 years ago
}
system("pause");
fclose(fp);
6 years ago
}
void Print()
{
printf("\t\t\t******ѧ<><D1A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ*******\n");
FILE *fp;
fp=fopen("D:\\ѧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ.txt","r+");
char a[4][100];
int b;
fscanf(fp,"%s%s%s%d%s",a[0],a[1],a[2],&b,a[3]);
while(!feof(fp))
{
printf("ѧ<EFBFBD>ţ<EFBFBD>%s\n",a[0]);
printf("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s\n",a[1]);
printf("<EFBFBD>Ա<EFBFBD><EFBFBD><EFBFBD>%s\n",a[2]);
printf("<EFBFBD><EFBFBD><EFBFBD>䣻%d\n",b);
6 years ago
printf("<EFBFBD><EFBFBD>ע<EFBFBD><EFBFBD>%s\n\n",a[3]);
6 years ago
fscanf(fp,"%s%s%s%d%s",a[0],a[1],a[2],&b,a[3]);
}
fclose(fp);
system("pause");
}
void Save(struct student *phead)
{
struct student *pTemp;
pTemp=phead;
FILE *fp;
6 years ago
if(pTemp!=NULL)
{
if((fp=fopen("D:\\ѧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ.txt","w"))!=NULL)
{
while(pTemp!=NULL)
{
fprintf(fp,"%s ",pTemp->id);
fprintf(fp,"%s ",pTemp->name);
fprintf(fp,"%s ",pTemp->sex);
fprintf(fp,"%d ",pTemp->age);
fprintf(fp,"%s ",pTemp->note);
pTemp=pTemp->next;
}
fclose(fp);
}
else
printf("<EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD><EFBFBD>\n");
}
Rank();
system("pause");
}
void R_Save(struct student *phead)
{
6 years ago
struct student *pTemp1;
pTemp1=phead;
6 years ago
FILE *fp;
6 years ago
if(pTemp1!=NULL)
6 years ago
{
if((fp=fopen("D:\\ѧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ.txt","w"))!=NULL)
6 years ago
{
6 years ago
while(pTemp1!=NULL)
6 years ago
{
6 years ago
fprintf(fp,"%s ",pTemp1->id);
fprintf(fp,"%s ",pTemp1->name);
fprintf(fp,"%s ",pTemp1->sex);
fprintf(fp,"%d ",pTemp1->age);
fprintf(fp,"%s ",pTemp1->note);
pTemp1=pTemp1->next;
6 years ago
}
fclose(fp);
}
6 years ago
else
printf("<EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD><EFBFBD>\n");
}
6 years ago
}
struct student* Delete()
{
6 years ago
char s[20];
6 years ago
struct student *pTemp,*pre;
FILE *fp;
fp=fopen("D:\\ѧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ.txt","r");
struct student *phead=NULL;
struct student *pEnd,*pNew,*pNow;
pNew=(struct student*)malloc(sizeof(struct student));
fscanf(fp,"%s",pNew->id);
fscanf(fp,"%s",pNew->name);
fscanf(fp,"%s",pNew->sex);
fscanf(fp,"%d",&pNew->age);
fscanf(fp,"%s",pNew->note);
pNew->next=NULL;
pEnd=pNew;
phead=pNew;
while(!feof(fp))
{
pNew=(struct student*)malloc(sizeof(struct student));
fscanf(fp,"%s",pNew->id);
fscanf(fp,"%s",pNew->name);
fscanf(fp,"%s",pNew->sex);
fscanf(fp,"%d",&pNew->age);
fscanf(fp,"%s",pNew->note);
pNew->next=NULL;
pEnd->next=pNew;
pEnd=pNew;
}
pNow = phead;
while(pNow->next->next!=NULL)
{
pNow = pNow->next;
}
pNow->next=NULL;
6 years ago
printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѧ<EFBFBD>ţ<EFBFBD>");
6 years ago
renew: pre=pTemp=phead; int i=1;
scanf("%s",s);
6 years ago
while(strcmp(pTemp->id,s))
{
i++;
pTemp=pTemp->next;
if(pTemp==NULL)
{
6 years ago
printf("\t\t\tѧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>󣡣<EFBFBD><EFBFBD><EFBFBD>\n");
6 years ago
printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
6 years ago
goto renew;
}
}
if(i>1)
{
pre=pTemp=phead;
int j;
for(j=1;j<i;j++)
{
pre=pTemp;
pTemp=pTemp->next;
}
pre->next=pTemp->next;
free(pTemp);
}
else
{
pTemp=phead;
phead=phead->next;
free(pTemp);
}
fclose(fp);
system("pause");
return phead;
}
void search()
{
struct student *pTemp;
FILE *fp;
fp=fopen("D:\\ѧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ.txt","r");
struct student *phead=NULL;
struct student *pEnd,*pNew,*pNow;
pNew=(struct student*)malloc(sizeof(struct student));
fscanf(fp,"%s",pNew->id);
fscanf(fp,"%s",pNew->name);
fscanf(fp,"%s",pNew->sex);
fscanf(fp,"%d",&pNew->age);
fscanf(fp,"%s",pNew->note);
pNew->next=NULL;
pEnd=pNew;
phead=pNew;
while(!feof(fp))
{
pNew=(struct student*)malloc(sizeof(struct student));
fscanf(fp,"%s",pNew->id);
fscanf(fp,"%s",pNew->name);
fscanf(fp,"%s",pNew->sex);
fscanf(fp,"%d",&pNew->age);
fscanf(fp,"%s",pNew->note);
pNew->next=NULL;
pEnd->next=pNew;
pEnd=pNew;
}
pNow = phead;
while(pNow->next->next!=NULL)
{
pNow = pNow->next;
}
pNow->next=NULL;
fclose(fp);
6 years ago
char x; char s[20];
6 years ago
printf("\t\t\t<EFBFBD><EFBFBD>ѡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѯ<EFBFBD><EFBFBD>ʽ\n1.ѧ<>Ų<EFBFBD>ѯ\n2.<2E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѯ\n3.<2E>Ա<EFBFBD><D4B1><EFBFBD>ѯ\n4.<2E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѯ\n");
6 years ago
RE: x=getch();
6 years ago
fflush(stdin); //<2F><><EFBFBD>ջ<EFBFBD><D5BB><EFBFBD><EFBFBD><EFBFBD>
6 years ago
RE1: pTemp=phead; int Y=0; int flag = 1;
6 years ago
switch(x)
{
6 years ago
case'1':
6 years ago
printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѧ<EFBFBD>ţ<EFBFBD>");
break;
6 years ago
case'2':
6 years ago
printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
break;
6 years ago
case'3':
6 years ago
printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ա<EFBFBD><EFBFBD><EFBFBD>");
break;
6 years ago
case'4':
6 years ago
printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
scanf("%d",&Y);
goto jump;
break;
default:
6 years ago
printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n\t\t\t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n");
6 years ago
goto RE;
}
scanf("%s",s);
jump: while(pTemp!=NULL)
{
switch(x)
{
6 years ago
case'1':
6 years ago
if(strcmp(s,pTemp->id)==0)
{
printf("ѧ<EFBFBD>ţ<EFBFBD>%s\n",pTemp->id);
printf("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s\n",pTemp->name);
printf("<EFBFBD>Ա<EFBFBD><EFBFBD><EFBFBD>%s\n",pTemp->sex);
printf("<EFBFBD><EFBFBD><EFBFBD>䣻%d\n",pTemp->age);
6 years ago
printf("<EFBFBD><EFBFBD>ע<EFBFBD><EFBFBD>%s\n\n",pTemp->note);
6 years ago
flag = 0;
}
break;
case'2':
6 years ago
if(strcmp(s,pTemp->name)==0)
{
printf("ѧ<EFBFBD>ţ<EFBFBD>%s\n",pTemp->id);
printf("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s\n",pTemp->name);
printf("<EFBFBD>Ա<EFBFBD><EFBFBD><EFBFBD>%s\n",pTemp->sex);
printf("<EFBFBD><EFBFBD><EFBFBD>䣻%d\n",pTemp->age);
6 years ago
printf("<EFBFBD><EFBFBD>ע<EFBFBD><EFBFBD>%s\n\n",pTemp->note);
6 years ago
flag = 0;
}
break;
case'3':
6 years ago
if(strcmp(s,pTemp->sex)==0)
{
printf("ѧ<EFBFBD>ţ<EFBFBD>%s\n",pTemp->id);
printf("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s\n",pTemp->name);
printf("<EFBFBD>Ա<EFBFBD><EFBFBD><EFBFBD>%s\n",pTemp->sex);
printf("<EFBFBD><EFBFBD><EFBFBD>䣻%d\n",pTemp->age);
6 years ago
printf("<EFBFBD><EFBFBD>ע<EFBFBD><EFBFBD>%s\n\n",pTemp->note);
6 years ago
flag = 0;
6 years ago
}
6 years ago
break;
case'4':
6 years ago
if(Y==pTemp->age)
{
printf("ѧ<EFBFBD>ţ<EFBFBD>%s\n",pTemp->id);
printf("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s\n",pTemp->name);
printf("<EFBFBD>Ա<EFBFBD><EFBFBD><EFBFBD>%s\n",pTemp->sex);
printf("<EFBFBD><EFBFBD><EFBFBD>䣻%d\n",pTemp->age);
6 years ago
printf("<EFBFBD><EFBFBD>ע<EFBFBD><EFBFBD>%s\n\n",pTemp->note);
6 years ago
flag = 0;
}
break;
6 years ago
}
pTemp=pTemp->next;
}
6 years ago
if(flag)
{
printf("\t\t\tδ<EFBFBD><EFBFBD>ѯ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ԣ<EFBFBD>\n");
goto RE1;
}
6 years ago
system("pause");
}
struct student* Change()
{
struct student *pTemp;
FILE *fp;
fp=fopen("D:\\ѧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ.txt","r");
struct student *phead=NULL;
struct student *pEnd,*pNew,*pNow;
pNew=(struct student*)malloc(sizeof(struct student));
fscanf(fp,"%s",pNew->id);
fscanf(fp,"%s",pNew->name);
fscanf(fp,"%s",pNew->sex);
fscanf(fp,"%d",&pNew->age);
fscanf(fp,"%s",pNew->note);
pNew->next=NULL;
pEnd=pNew;
phead=pNew;
while(!feof(fp))
{
pNew=(struct student*)malloc(sizeof(struct student));
fscanf(fp,"%s",pNew->id);
fscanf(fp,"%s",pNew->name);
fscanf(fp,"%s",pNew->sex);
fscanf(fp,"%d",&pNew->age);
fscanf(fp,"%s",pNew->note);
pNew->next=NULL;
pEnd->next=pNew;
pEnd=pNew;
}
pNow = phead;
while(pNow->next->next!=NULL)
{
pNow = pNow->next;
}
pNow->next=NULL;
char s[20];
6 years ago
char m[10]; int flag=1;
RE1: printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
scanf("%s",m);
if(strcmp(m,"123456")==0)
{
RE: pTemp=phead;
printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD>޸<EFBFBD>ѧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ѧ<EFBFBD>ţ<EFBFBD>");
scanf("%s",s);
6 years ago
while(pTemp!=NULL)
{
if(strcmp(s,pTemp->id)==0)
{
6 years ago
printf("\t\t\tѧ<EFBFBD>ţ<EFBFBD>%s\t\t\t<EFBFBD>޸<EFBFBD>ѧ<EFBFBD>ţ<EFBFBD>",pTemp->id); scanf("%s",pTemp->id);
6 years ago
printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s\t\t\t\t\t<EFBFBD>޸<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>",pTemp->name); scanf("%s",pTemp->name);
printf("\t\t\t<EFBFBD>Ա<EFBFBD><EFBFBD><EFBFBD>%s\t\t\t\t\t<EFBFBD>޸<EFBFBD><EFBFBD>Ա<EFBFBD><EFBFBD><EFBFBD>",pTemp->sex); scanf("%s",pTemp->sex);
printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD>䣻%d\t\t\t\t\t<EFBFBD>޸<EFBFBD><EFBFBD><EFBFBD><EFBFBD>",pTemp->age); scanf("%d",&pTemp->age);
6 years ago
printf("\t\t\t<EFBFBD><EFBFBD>ע<EFBFBD><EFBFBD>%s\t\t\t<EFBFBD>޸ı<EFBFBD>ע<EFBFBD><EFBFBD>",pTemp->note); scanf("%s",pTemp->note);
flag = 0;
6 years ago
break;
}
pTemp=pTemp->next;
}
6 years ago
}
else
{
printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n");
goto RE1;
}
if(flag)
{
printf("\t\t\tѧ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n");
goto RE;
}
6 years ago
system("pause");
fclose(fp);
return phead;
}
int main()
{
6 years ago
system("color E5");
6 years ago
char x=0;
char m[7];
6 years ago
struct student *head=NULL;
6 years ago
Re:
setposition(40,14);
printf("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
setposition(39,13);
printf("*********************");
setposition(39,15);
printf("*********************");
setposition(39,14);
printf("*");
setposition(59,14);
printf("*");
setposition(51,14);
scanf("%s",m);
if(strcmp(m,"aaaaaa")==0)
{
while(1)
{
if(x=='g')
exit(0);
switch(x)
{
case'a':
Create();
break;
case'b':
Print();
break;
case'c':
Save(head);
break;
case'd':
head=Delete();
break;
case'e':
6 years ago
head=Change();
break;
6 years ago
case'f':
search();
break;
}
menu();
printf("\t\t\t<EFBFBD><EFBFBD>ѡ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫִ<EFBFBD>еIJ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
scanf("%c",&x);
}
}
else
{
6 years ago
setposition(40,14);
6 years ago
printf("\t\t\t<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!\n");
Sleep(1000);
6 years ago
goto Re;
}
return 0;
}