第1个回答 2008-07-13
太麻烦了,这个你可以参照个下.
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<ctype.h>
#define N 58
char wj[100]; //存储当前文件
int k=0; //判断当前是否打开文件
struct stu_info //用结构体存储每个学生的基本信息
{
char xh[15];
char xm[9];
char xb[3];
char mz[5];
char zzmm[5];
int nl;
struct stu_info *next;
};
void input(struct stu_info *head) //输入模块,雒东祥负责
{
struct stu_info *p,*q; //p,q分别指向当前节点和下一个节点
q=head;
while(q->next!=NULL) //遍历到最后
q=q->next;
printf("请输入要录入学生的信息(学号,姓名,性别,民族,政治面貌,年龄)\n");
p=(struct stu_info *)malloc(sizeof(struct stu_info));
printf("请录入:");
scanf("%s%s%s%s%s%d",p->xh,p->xm,p->xb,p->mz,p->zzmm,&p->nl);
q->next=p;
q=p;
printf("录入成功!\n");
printf("按“1”继续录入!\n");
q->next=NULL;
}
void save(struct stu_info *head) //保存模块 刘建宏负责
{
FILE *fp;
struct stu_info *p=head->next;
fp=fopen(wj,"wb");
if(fp==NULL)
printf("文件不能建立,信息不能正常保存!\n");
else
{
while(p!=NULL)
{
fprintf(fp,"%15s%9s%3s%5s%5%4d\n",p->xh,p->xm,p->xb,p->mz,p->zzmm,p->nl);
p=p->next;
}
fclose(fp);
printf("保存成功!\n");
}
}
void open(struct stu_info *head) //打开模块 牛强强负责
{
FILE *fp;
struct stu_info *p,*q=head;
printf("请输入你要打开的班级文件名\n");
scanf("%s",wj);
strcat(wj,".dat");
fp=fopen(wj,"rb");
if(fp==NULL)
printf("文件信息不能正常打开!\n");
else
{
while(!feof(fp))
{
p=(struct stu_info *)malloc(sizeof(struct stu_info));
fscanf(fp,"%s%s%s%s%s%d\n",p->xh,p->xm,p->xb,p->mz,p->zzmm,&p->nl);
q->next=p;
q=p;
}
q->next=NULL;
fclose(fp);
printf("打开成功!\n");
k=1;
}
}
struct stu_info * search(struct stu_info *head) //查询模块 杨嘉瑛负责
{
struct stu_info *p,*q=head;
char dcxh[15];
scanf("%s",dcxh);
p=head->next;
while((p!=NULL)&&(strcmp(p->xh,dcxh)!=0))
{
q=p;
p=p->next;
}
if(p==NULL)
printf("没有这个学生!\n");
else
{
printf("该学生的信息为:\n");
printf("学号 姓名 性别 民族 政治面貌 年龄\n");
printf("%15s%9s%5s%5s%9s%4d\n",p->xh,p->xm,p->xb,p->mz,p->zzmm,p->nl);
}
return q;
}
void modify(struct stu_info *head) //修改模块 马涛负责
{ int i;
struct stu_info *p;
printf("请输入要修改学生的学号:\n");
p=search(head);
p=p->next;
if(p!=NULL)
{
printf("按“1”键确定修改\n");
scanf("%d",&i);
if(i==1)
{
printf("请输入要修改学生的新信息(学号,姓名,性别,民族,政治面貌,年龄)\n");
scanf("%s%s%s%s%s%d",p->xh,p->xm,p->xb,p->mz,p->zzmm,&p->nl);
printf("你已修改!\n");
}
}
printf("按“1”键继续修改!\n");
}
void delet(struct stu_info *head) //删除模块 杨嘉瑛负责
{
int i;
struct stu_info *p,*q;
printf("请输入要删除学生的学号:\n");
q=search(head);
p=q->next;
if(p!=NULL)
{
printf("按“1”键确定删除该学生!\n");
scanf("%d",&i);
if(i==1)
{
q->next=p->next;
free(p);
printf("该学生已被删除!\n");
}
}
printf("按“1”键继续删除!\n");
}
void list(struct stu_info *head) //按学号列表 盖仲德负责
{
int i=1;
struct stu_info *p,*q,*r;
p=head->next;
head->next=NULL;
while(p!=NULL)
{
q=head;
p=head->next;
while((r!=NULL)&&(strcmp(p->xh,r->xh)<0))
{
q=r;
r=r->next;
}
q->next=p;
p=p->next;
if(r==NULL)
q->next->next=NULL;
else
q->next->next=r;
}
p=head->next;
printf(" ********班级基本信息********\n");
printf("序号 学号 姓名 性别 民族 政治面貌 年龄\n");
while(p!=NULL)
{
printf("%3d%15s%9s%5s%5s%9s%5d\n",i++,p->xh,p->xm,p->xb,p->mz,p->zzmm,p->nl);
p=p->next;
if(i%22==0)
system("pause");
}
}
void jiami(char *p) //加密模块 秦亚妮负责
{
while(*p!='\0')
{
*p+=100;
p++;
}
}
void jiemi(char *p) //解密模块 秦亚妮负责
{
while(*p!='\0')
{
*p-=100;
p++;
}
}
void repass() //修改密码模块 盖仲德负责
{
FILE *fp;
int i=3;
char mm[2][19];
fp=fopen("pass.ini","rb");
if(fp==NULL)
printf("无法修改!\n");
else
{
fscanf(fp,"%s",mm[0]);
fclose(fp);
jiemi(mm[0]);
while(i--)
{
printf("请输入旧密码:\n");
scanf("%s",mm[1]);
if(strcmp(mm[0],mm[1])==0||strcmp(mm[1],"guest")==0)
{
printf("请输入新密码:\n");
scanf("%s",mm[0]);
printf("再输入一次确认:\n");
scanf("%s",mm[1]);
if(strcmp(mm[1],mm[0])==0)
{
fp=fopen("pass.ini","wb");
if(fp==NULL)
printf("修改失败,请重试!\n");
else
{
jiami(mm[0]);
fprintf(fp,"%19s",mm[0]);
fclose(fp);
printf("修改成功!\n");
break;
}
}
else
printf("你输入不一致!\n");
}
else
printf("旧密码错误,请重新输入:\n");
}
if(i==0)
printf("你无权修改!\n");
}
}
int test() //密码测试模块 盖仲德负责
{
FILE *fp;
char mm[2][19];
int i=3;
printf("**************欢迎使用!*************\n");
fp=fopen("pass.ini","rb");
if(fp==NULL)
{
printf("你第一次使用!\n");
do
{
printf("请设置密码!\n");
printf("请输入你要设置的密码(不包含空格):");
scanf("%s",mm[0]);
printf("请再次输入你的密码:");
scanf("%s",mm[1]);
if(strcmp(mm[1],mm[0])==0)
{
fp=fopen("pass.ini","wb");
if(fp==NULL)
printf("此环境不支持!\n");
else
{
jiami(mm[0]);
fprintf(fp,"%19s",mm[0]);
fclose(fp);
printf("设置成功!\n");
return 1;
}
}
printf("你两次输入不一致,请重试!\n");
}while(strcmp(mm[0],mm[1])!=0);
}
else
{
fscanf(fp,"%s",mm[0]);
fclose(fp);
jiemi(mm[0]);
while(i--)
{
printf("请输入密码:\n");
scanf("%s",mm[1]);
if(strcmp(mm[0],mm[1])==0||strcmp(mm[1],"guest")==0)
return 1;
printf("你输入错误,请重新输入!\n");
}
printf("你无权使用此系统!\n");
return 0;
}
return 0;
}
void newwj(struct stu_info *head) //新建模块 刘建宏负责
{
FILE *fp;
printf("请输入要新建的班级名:");
scanf("%s",wj);
strcat(wj,".dat");
fp=fopen(wj,"rb");
if(fp==NULL)
{
printf("新建成功!\n");
k=1;
}
else
{
fclose(fp);
printf("新建失败!(可能此文件已存在。)请重新新建\n");
}
}
void nuew(int i,struct stu_info *head) //菜单模块 牛强强负责
{
if(k==0)
switch(i)
{
case 9: newwj(head); break;
case 2: open(head);break;
case 10:repass();break;
case 3:
case 4:
case 5:
case 6:
case 7:
case 8: printf("请先新建或打开!\n");break;
case 1: break;
case 0: break;
case 11: break;
default: printf("你输入错误!请重输:\n");
}
else
switch(i)
{
case 3: input(head);break;
case 4: save(head);break;
case 5: printf("请输入要查找的学生学号:\n");search(head);
printf("按“1”键继续查询!\n");break;
case 6: modify(head);break;
case 7: delet(head);break;
case 8: list(head);break;
case 10: repass(); break;
case 2:
case 9: printf("请先关闭当前文件!\n");break;
case 1: break;
case 0: break;
case 11:break;
default: printf("你输入错误!请重输:\n");
}
}
void main() //主函数 盖仲德负责
{
struct stu_info *head,*p,*q;
int str,ch=4;
int i,count=0;
head=(struct stu_info *)malloc(sizeof(struct stu_info));
head->next=NULL;
p=head->next;
i=test();
if(i)
{
while(ch!=0)
{
while(ch!=11 && ch!=0)
{
if((count++%5)==0)
{
printf("操作提示:\n");
printf("2-打开 3-录入 4-保存 5-查询 6-修改 7-删除 8-列出 \n9-新建 10-修改密码 11-关闭 0-退出 1-重复\n");
}
str=ch;
scanf("%d",&ch);
if(ch==1)
ch=str;
nuew(ch,head);
}
if(str!=4)
{
printf("是否要保存你的操作?按“1”键保存!\n");
scanf("%d",&i);
if(i==1)
{
save(head);
str=4;
}
}
while(p!=NULL)
{
q=p->next;
free(p);
p=q;
}
head->next=NULL;
k=0;
if(ch==11)
{
printf("文件已关闭!\n");
ch=4;
}
}
if(str!=4)
{
printf("是否要保存你的操作?按“1”键保存!\n");
scanf("%d",&i);
if(i==1)
save(head);
}
}
printf("****************谢谢使用!****************\n");
}