中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C語言如何實現班檔案管理系統課程設計

發布時間:2021-05-28 12:56:51 來源:億速云 閱讀:191 作者:小新 欄目:編程語言

這篇文章主要介紹C語言如何實現班檔案管理系統課程設計,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

本文實例為大家分享了C語言班檔案管理系統的具體代碼,供大家參考,具體內容如下

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define N 20
struct student
{
 long num;
 char name[20];
 char sex[10];
 int age;
 char bz[40];
 struct student *next;
};
int i,j,n,num2,num3,age3,k,m;
char name3[20],sex3[20],bz3[20],ch;
FILE *fp;
int login() //登陸函數
{
 char key[20];
 printf("\t  ********************請輸入系統密碼********************\n");
 do
 {
 scanf("%s",key);
 if((strcmp("a",key))==0)
 {
 printf("\t        password correct ,welcome !\n");
 return 1; //當密碼正確時,返回1,進入系統
 }
 printf("\t        password incorrect,please input again!\n");
 }while(key!=1);//當返回值不為1時,重新輸入密碼,直到輸入真確為止
 system("cls");
}
int menu() //菜單
{
 int c;
 printf("\t\t**********歡迎進入通訊客戶端!************\n\n");
 printf("\t\t|—————1.錄入學生的基本信息—————|\n");
 printf("\t\t|----------2.顯示學生的基本信息----------|\n");
 printf("\t\t|----------3.保存學生的基本信息----------|\n");
 printf("\t\t|----------4.刪除學生的基本信息----------|\n");
 printf("\t\t|----------5.修改學生的基本信息----------|\n");
 printf("\t\t|----------6.查詢學生的基本信息----------|\n");
 printf("\t\t|—————7.退出系統——————————|\n");
 printf("\t\t請選擇您要進行的功能(0~7) ");
 scanf("%d",&c);
 return c;
}
struct student *creat() //錄入信息函數
{
 struct student *head,*p1,*p2;
 n=0;
 p1=p2=(struct student *)malloc(sizeof(struct student));
 head=NULL;
 printf("請輸入學生信息學號,姓名,性別,年齡,備注(鍵入學生學號為0時結束)\n");
 while(1) //為1表真,p2->next不為0;
 {
 scanf("%d",&p1->num);
 if(p1->num==0) //判斷學生的學號是否為0,如果為0則停止輸入數據;
 {
  break;
 }
 scanf("%s%s%d%s",p1->name,p1->sex,&p1->age,p1->bz);
 n=n+1;
 if(n==1)
 {
  head=p1;
 }
 else
 {
  p2->next=p1;
 }
 p2=p1;
 p1=(struct student *)malloc(sizeof(struct student));
 }
 p2->next=NULL;
 system("cls");
 return(head);
}
void print(struct student *head) //輸出信息函數
{
 struct student *p;
 printf("\t\t這里有 %d 個學生的數據信息\n",n);
 p=head;
 if(head!=NULL)
 {
 do
 {
 printf("\t\t學號:%d\t姓名:%s\t性別:%s\t年齡:%d\t備注:%s\n",p->num,p->name,p->sex,p->age,p->bz);
 p=p->next;
 }while(p!=NULL);
 }
 else
 {
 return 0;
 }
 printf("\n");
}
int save(struct student *p) //保存信息函數
{
 FILE *fp;
 if((fp=fopen("keshe.txt","wb"))==NULL)
 {
 printf("open file fail\n");
 }
 fp=fopen("stud","wb");
 do
 {
 fwrite(p,sizeof(struct student),1,fp);
 p=p->next;
 }while(p!=NULL);
 printf("\t\t\t保存成功!\n");
 fclose(fp);
 return 0;
}
struct student *del(struct student *head)
{
 struct student *p1,*p2;
 printf("\t\t請輸入要刪除學生的學號\n");
 scanf("%d",&num2);
 p1=head;
 if(head->num==num2)
 {
 head=head->next;
 free(p1);
 n--;
 }
 else
 {
 
 p2=head;
 while(p2->num!=num2&&p2->next!=NULL)
 {
  p1=p2;
  p2=p2->next;
 }
 if(p2->num==num2)
 {
  p1->next=p2->next;
  n--;
 }
 printf("delete:%ld\n",num2);
 }
 return (head);
}
int mod(struct student *head); //修改信息函數
struct student *modify(struct student *head)
{
 if(login()==0)
 {
 return 0;
 }
 else
 {
 struct student *p1;
 j=0;
 p1=(struct student *)malloc(sizeof(struct student));
 printf("\t\t\t請輸入你要更改的學號\n");
 scanf("%d",&num2);
 printf("\t\t\t學號\n");
 scanf("%d",&num3);
 printf("\t\t\t姓名\n");
 scanf("%s",name3);
 printf("\t\t\t性別\n");
 scanf("%s",sex3);
 printf("\t\t\t年齡\n");
 scanf("%d",&age3);
 printf("\t\t\t備注\n");
 scanf("%s",bz3);
 p1=head;
 if(head->num==num2)
 {
  head->num=num3;
  strcpy(head->name,name3);
  strcpy(head->sex,sex3);
  head->age=age3;
  strcpy(head->bz,bz3);
  j=1;
 }
 else
 {
  p1=head->next;
  if(p1!=NULL)
  {
  while(p1->num!=num2)
  {
   p1=p1->next;
  }
  p1->num=num2;
  strcpy(p1->name,name3);
  strcpy(p1->sex,sex3);
  p1->age=age3;
  strcpy(p1->bz,bz3);
  j=1;
  }
 }
 if(j==0)
 {
  printf("\t\t\t更改失敗\n");
 }
 else
 {
  printf("\t\t\t更改成功\n");
 }
 }
 system("cls");
 mod(head);
}
int mod(struct student *head)
{
 printf("\t\t\t請選擇\n");
 printf("\t\t\t1:按學號修改學生信息\n");
 printf("\t\t\t2:輸出修改后的學生信息\n");
 printf("\t\t\t3:返回主菜單\n");
 scanf("%d",&m);
 switch(m)
 {
 case 1:head=modify(head);break;
 case 2:print(head);break;
 case 3:menu();break;
 default:printf("\t\t\tinput error!\n");
 mod(head);
 }
}
int find(struct student *head);
int find1(struct student *head) //以學號方式查找
{
 struct student *p1;
 p1=(struct student *)malloc(sizeof(struct student));
 printf("\t\t\t請輸入你要查詢的學生學號\n");
 scanf("%d",&num2);
 p1=head;
 while(p1!=NULL)
 {
 if(p1->num==num2)
 {
  k=1;
  printf("\t\t\t學號:%d\t姓名:%s\t性別:%s\t年齡:%d\t備注:%s\n\n",p1->num,p1->name,p1->sex,p1->age,p1->bz);
  break;
 }
 p1=p1->next;
 }
 if(k==0)
 {
 printf("\t\t\t沒有查詢到您要找的學生信息\n\n");
 }
 else
 {
 printf("\t\t\t這就是您要找的學生信息\n\n");
 }
 find(head);
}
int find2(struct student *head) //以姓名方式查找
{
 struct student *p1;
 p1=(struct student *)malloc(sizeof(struct student));
 printf("\t\t\t請輸入您要查詢的學生姓名\n");
 scanf("%s",name3);
 p1=head;
 while(p1!=NULL)
 {
 if((strcmp(p1->name,name3))==0)
 {
  k=1;
  printf("\t\t\t學號:%d\t姓名:%s\t性別:%s\t年齡:%d\t備注:%s\n\n",p1->num,p1->name,p1->sex,p1->age,p1->bz);
  break;
 }
 p1=p1->next;
 }
 if(k==0)
 {
 printf("\t\t\t沒有找到該學生信息\n\n");
 }
 else
 {
 printf("\t\t\t這就是您要查詢的學生信息\n\n");
 }
 find(head);
}
int find3(struct student *head) //以性別方式查找
{ 
 struct student *p1;
 p1=(struct student *)malloc(sizeof(struct student));
 printf("\t\t\t請輸入你要查詢的學生的性別\n");
 scanf("%s",sex3);
 p1=head;
 while(p1!=NULL)
 {
 if((strcmp(p1->sex,sex3))==0)
 {
  k=1;
  printf("\t\t\t學號:%d\t姓名:%s\t性別:%s\t年齡:%d\t備注:%s\n\n",p1->num,p1->name,p1->sex,p1->age,p1->bz);
  break;
 }
 p1=p1->next;
 }
 if(k==0)
 {
 printf("\t\t\t沒有找到該學生信息\n\n");
 }
 else
 {
 printf("\t\t\t這就是您要查詢的學生的信息\n\n");
 }
 find(head);
}
int find4(struct student *head) //以年齡方式查找
{
 struct student *p1;
 p1=(struct student *)malloc(sizeof(struct student));
 printf("\t\t\t請輸入您要查詢的學生的年齡\n");
 scanf("%d",&age3);
 p1=head;
 while(p1!=NULL)
 {
 if(p1->age==age3)
 {
  k=1;
  printf("\t\t\t學號:%d\t姓名:%s\t性別:%s\t年齡:%d\t備注:%s\n\n",p1->num,p1->name,p1->sex,p1->age,p1->bz);
  break;
 }
 p1=p1->next;
 }
 if(k==0)
 {
 printf("\t\t\t沒有找到該學生的信息\n\n");
 }
 else
 {
 printf("\t\t\t這就是您要找的學生的信息\n\n");
 }
 find(head);
}
int find(struct student *head)
{
 printf("\t\t\t請選擇您要查詢學生信息的方式\n");
 printf("\t\t\t1:按學生學號查詢\n");
 printf("\t\t\t2:按學生姓名查詢\n");
 printf("\t\t\t3:按學生性別查詢\n");
 printf("\t\t\t4:按學生年齡查詢\n");
 printf("\t\t\t5:返回主菜單\n");
 scanf("%d",&m);
 switch(m)
 {
 case 1:find1(head);break;
 case 2:find2(head);break;
 case 3:find3(head);break;
 case 4:find4(head);break;
 case 5:system("cls");menu();break;
 default:printf("\t\t\tinput error,please input again\n");
 }
}
int main() //主函數
{
 struct student *phead;
 if(login()==0)
 {
 return 0;
 }
 
 printf("\n");
 while(1)
 {
 switch(menu())
 {
 case 1:system("cls");phead=creat();break;
 case 2:system("cls");print(phead);break;
 case 3:system("cls");save(phead);break;
 case 4:system("cls");phead=del(phead);break;
 case 5:system("cls");mod(phead);break;
 case 6:system("cls");find(phead);break;
 case 7:system("cls");printf("\t\t\t歡迎使用,再見!\n");return 0;
 default:printf("\t\t\t輸入有錯,請重新輸入\n");
 }
 }
}

以上是“C語言如何實現班檔案管理系統課程設計”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

固始县| 铜梁县| 晋宁县| 河津市| 同江市| 徐汇区| 读书| 垫江县| 宣化县| 陇南市| 秭归县| 博客| 进贤县| 洛隆县| 安平县| 浦北县| 通渭县| 绥滨县| 萍乡市| 连平县| 奇台县| 景谷| 新营市| 班玛县| 承德县| 石柱| 锦屏县| 灵川县| 咸丰县| 方正县| 榆社县| 彰化市| 乃东县| 永康市| 河间市| 北碚区| 临汾市| 内乡县| 祥云县| 铁力市| 龙川县|