Ⅰ c語言學生成績管理系統課程設計
/* Note:Your choice is C IDE */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <conio.h>
#define N 100
struct student
{
char num[10];
char name[10];
char tel[11];
};
/* 以下是函數原型說明,被調函數的定義在主調函數後面時,要加此部分 */
void myprint();
void mycreate();
void mydisplay();
void mysearch();
/* sch_num與sch_name函數被mysearch調用 */
void sch_num(FILE *fp);
void sch_name(FILE *fp);
void mymodify();
void myadd();
void mydelete();
/* del_num與del_name函數被mydelete調用 */
void del_num(FILE *fp);
void del_name(FILE *fp);
void mysort();
/* sort_num與sort_name函數被mysort調用 */
void sort_num();
void sort_name();
void main()
{
char choose,yes_no;
do
{
myprint(); /* 顯示主菜單 */
printf(" ");
choose=getch();
switch(choose)
{
case '1': mycreate(); break; /* 創建 */
case '2': mydisplay(); break; /* 顯示 */
case '3': mysearch(); break; /* 查詢 */
case '4': mymodify(); break; /* 修改 */
case '5': myadd(); break; /* 添加 */
case '6': mydelete(); break; /* 刪除 */
case '7': mysort(); break; /* 排序 */
case '0': break;
default:printf("\n %c為非法選項!\n",choose);
}
if(choose=='0')
break;
printf("\n 要繼續選擇嗎(Y/N)?\n");
do
{
yes_no=getch();
}while(yes_no!='Y'&&yes_no!='y'&&yes_no!='N'&&yes_no!='n');
}while(yes_no!='Y'||yes_no!='y');
}
void myprint() /* 顯示菜單界面 */
{
printf("\n\n\n\n\n\n\n\n");
printf(" |----------------------------|\n");
printf(" | 請輸入選項編號(0-7): |\n");
printf(" |----------------------------|\n");
printf(" | 1--創建信息管理系統 |\n");
printf(" | 2--顯示信息管理系統 |\n");
printf(" | 3--查詢信息管理系統 |\n");
printf(" | 4--修改信息管理系統 |\n");
printf(" | 5--添加信息管理系統 |\n");
printf(" | 6--刪除信息管理系統 |\n");
printf(" | 7--排序信息管理系統 |\n");
printf(" | 0--退出 |\n");
printf(" |----------------------------|\n");
}
/* 定義創建信息管理系統的函數 */
void mycreate()
{
int i=1;
struct student temp;
FILE *fp;
fp=fopen("d:\\lbh\\guanli.dat","w");
if(fp==NULL)
{
printf("\n 打開文件失敗!\n");
return;
}
printf("\n 請輸入第1個記錄:\n");
printf(" 學號(用#結束輸入):");
do
{
gets(temp.num);
}while(strcmp(temp.num,"")==0);
printf(" 姓名(用#結束輸入):");
gets(temp.name);
printf(" 電話號碼(用#結束輸入):");
gets(temp.tel);
while(temp.num[0]!='#'&&temp.name[0]!='#'&&temp.tel[0]!='#')
{
fprintf(fp,"%23s%15s%15s\n",temp.num,temp.name,temp.tel);
i++;
printf("\n 請輸入第%d個記錄:\n",i);
printf(" 學號(用#結束輸入):");
do
{
gets(temp.num);
}while(strcmp(temp.num,"")==0);
printf(" 姓名(用#結束輸入):");
gets(temp.name);
printf(" 電話號碼(用#結束輸入):");
gets(temp.tel);
}
fclose(fp);
}
/* 定義顯示信息管理系統的函數 */
void mydisplay()
{
int n=0;
struct student temp;
FILE *fp;
fp=fopen("d:\\lbh\\guanli.dat","r+");
if(fp==NULL)
{
printf("\n 打開文件失敗!\n");
return;
}
// clrscr();
printf(" 學號 姓名 電話號碼\n");
while(feof(fp)==0)
{
fscanf(fp,"%23s%15s%15s\n",&temp.num,&temp.name,&temp.tel);
printf("%23s%15s%15s\n",temp.num,temp.name,temp.tel);
n++;
}
if(n==0)
printf("\n 文件中無記錄!\n");
else
printf("\n 文件中共有%d個記錄!\n",n);
fclose(fp);
}
/* 定義查詢信息管理系統的函數 */
void mysearch()
{
char c;
FILE *fp;
fp=fopen("d:\\lbh\\guanli.dat","r+");
if(fp==NULL)
{
printf("\n 打開文件失敗!\n");
return;
}
printf("\n 按學號查詢(h),還是按姓名查詢(m)?");
c=getch();
if(c=='h'||c=='H')
sch_num(fp); /* 按學號查詢 */
if(c=='m'||c=='M')
sch_name(fp); /* 按姓名查詢 */
else
printf("\n 非法字元!\n");
fclose(fp);
}
/* 定義按學號查詢信息管理系統的函數 */
void sch_num(FILE *fp)
{
int flag=0,n=0;
char tempnum[10];
struct student temp;
printf("\n 請輸入要查詢記錄的學號:");
gets(tempnum);
while(feof(fp)==0)
{
fscanf(fp,"%23s%15s%15s\n",&temp.num,&temp.name,&temp.tel);
if(strcmp(tempnum,temp.num)==0)
{
if(flag==0)
printf(" 學號 姓名 電話號碼\n");
printf("%23s%15s%15s\n",temp.num,temp.name,temp.tel);
flag=1;
}
n++;
}
if(n==0)
printf("\n 文件中無記錄!\n");
else
if(flag==0)
printf("\n 文件中無此人!\n");
}
/* 定義按姓名查詢信息管理系統的函數 */
void sch_name(FILE *fp)
{
int flag=0,n=0;
char tempname[10];
struct student temp;
printf("\n 請輸入要查詢記錄的姓名:");
gets(tempname);
while(feof(fp)==0)
{
fscanf(fp,"%23s%15s%15s\n",&temp.num,&temp.name,&temp.tel);
if(strcmp(tempname,temp.name)==0)
{
if(flag==0)
printf(" 學號 姓名 電話號碼\n");
printf("%23s%15s%15s\n",temp.num,temp.name,temp.tel);
flag=1;
}
n++;
}
if(n==0)
printf("\n 文件中無記錄!\n");
else
if(flag==0)
printf("\n 文件中無此人!\n");
}
/* 定義修改信息管理系統的函數 */
void mymodify()
{
char c;
int n=0;
struct student *find,temp,record[100],*p; /* 最多100個記錄 */
FILE *fp;
fp=fopen("d:\\lbh\\guanli.dat","r+");
if(fp==NULL)
{
printf("\n 打開文件失敗!\n");
return;
}
p=record;
while(feof(fp)==0)
{
fscanf(fp,"%23s%15s%15s\n",p->num,p->name,p->tel);
p++;
n++;
}
fclose(fp);
if(n==0)
{
printf("\n 文件中無記錄!\n");
return;
}
printf("\n 請輸入要修改記錄的學號:");
gets(temp.num);
for(p=record;p<record+n;p++)
if(strcmp(temp.num,p->num)==0)
{
find=p; /* find記住修改記錄的位置 */
break;
}
if(p==record+n)
{
printf("\n 無此人!\n");
return;
}
do
{
printf("\n 請輸入正確的學號:");
do
{
gets(temp.num);
}while(strcmp(temp.num,"")==0);
printf(" 請輸入正確的姓名:");
gets(temp.name);
printf(" 請輸入正確的電話號碼:");
gets(temp.tel);
for(p=record;p<record+n;p++)
if((strcmp(temp.num,p->num)==0)&&(p!=find))
{
printf("\n 學號重復,要重新輸入嗎(Y/N)?");
do
{
c=getch();
}while(c!='Y'&&c!='y'&&c!='N'&&c!='n');
putchar('\n');
break;
}
if(p==record+n)
{
*find=temp; /* find指向需要修改記錄的位置 */
break;
}
}while(c=='Y'||c=='y');
fp=fopen("d:\\lbh\\guanli.dat","r+");
if(fp==NULL)
{
printf("\n 打開文件失敗!\n");
return;
}
for(p=record;p<record+n;p++)
fprintf(fp,"%23s%15s%15s\n",p->num,p->name,p->tel);
fclose(fp);
}
/* 定義添加信息管理系統的函數 */
void myadd()
{
char c;
int n=0;
struct student temp,record[N],*p;
FILE *fp;
fp=fopen("d:\\lbh\\guanli.dat","r+");
if(fp==NULL)
{
printf("\n 打開文件失敗!\n");
return;
}
p=record;
while(feof(fp)==0)
{
fscanf(fp,"%23s%15s%15s\n",p->num,p->name,p->tel);
p++;
n++;
}
fclose(fp);
do
{
printf("\n 請輸入新記錄的學號:");
do
{
gets(temp.num);
}while(strcmp(temp.num,"")==0);
printf(" 請輸入新記錄的姓名:");
gets(temp.name);
printf(" 請輸入新記錄的電話號碼:");
gets(temp.tel);
for(p=record;p<record+n;p++)
if(strcmp(temp.num,p->num)==0)
{
printf("\n 學號重復,要重新輸入嗎(Y/N)?");
do
{
c=getch();
}while(c!='Y'&&c!='y'&&c!='N'&&c!='n');
putchar('\n');
break;
}
if(p==record+n)
{
*p=temp;
break;
}
}while(c=='Y'||c=='y');
fp=fopen("d:\\lbh\\guanli.dat","r+");
if(fp==NULL)
{
printf("\n 打開文件失敗!\n");
return;
}
for(p=record;p<record+n+1;p++)
fprintf(fp,"%23s%15s%15s\n",p->num,p->name,p->tel);
fclose(fp);
}
/* 定義刪除信息管理系統的函數 */
void mydelete()
{
char c;
FILE *fp;
fp=fopen("d:\\lbh\\guanli.dat","r+");
if(fp==NULL)
{
printf("\n 打開文件失敗!\n");
return;
}
printf("\n 按學號刪除(h),還是按姓名刪除(m)?");
c=getch();
if(c=='h'||c=='H')
del_num(fp); /* 按學號刪除 */
if(c=='m'||c=='M')
del_name(fp); /* 按姓名刪 */
else
printf("\n 非法字元!\n");
fclose(fp);
}
/* 定義按學號刪除信息管理系統的函數 */
void del_num(FILE *fp)
{
int n=0;
char tempnum[10];
struct student record[N],*p,*k;
p=record;
while(feof(fp)==0)
{
fscanf(fp,"%23s%15s%15s\n",p->num,p->name,p->tel);
p++;
n++;
}
fclose(fp);
printf("\n 請輸入要刪除記錄的學號:");
gets(tempnum);
for(k=record;k<record+n;k++)
if(strcmp(tempnum,k->num)==0)
break; /* 找到要刪記錄結束循環 */
if(k<record+n) /* 提前結束循環,說明找到人 */
for(p=k;p<k+n-1;p++) /* 向左移一位,相當於刪除記錄 */
*p=*(p+1);
else
printf("\n 無此人!\n");
fp=fopen("d:\\lbh\\guanli.dat","w");
if(fp==NULL)
{
printf("\n 打開文件失敗!\n");
return;
}
for(p=record;p<record+n-1;p++)
fprintf(fp,"%23s%15s%15s\n",p->num,p->name,p->tel);
}
/* 定義按姓名刪除信息管理系統的函數 */
void del_name(FILE *fp)
{
int n=0;
char tempname[10];
struct student record[N],*p,*k;
p=record;
while(feof(fp)==0)
{
fscanf(fp,"%23s%15s%15s\n",p->num,p->name,p->tel);
p++;
n++;
}
fclose(fp);
printf("\n 請輸入要刪除記錄的姓名:");
gets(tempname);
for(k=record;k<record+n;k++)
if(strcmp(tempname,k->name)==0)
break; /* 找到要刪記錄結束循環 */
if(k<record+n) /* 提前結束循環,說明找到人 */
for(p=k;p<k+n-1;p++) /* 向左移一位,相當於刪除記錄 */
*p=*(p+1);
else
printf("\n 無此人!\n");
fp=fopen("d:\\lbh\\guanli.dat","w");
if(fp==NULL)
{
printf("\n 打開文件失敗!\n");
return;
}
for(p=record;p<record+n-1;p++)
fprintf(fp,"%23s%15s%15s\n",p->num,p->name,p->tel);
}
/* 定義排序信息管理系統的函數 */
void mysort()
{
char c;
FILE *fp;
fp=fopen("d:\\lbh\\guanli.dat","r+");
if(fp==NULL)
{
printf("\n 打開文件失敗!\n");
return;
}
fclose(fp);
printf("\n 按學號排序(h),還是按姓名排序(m)?");
c=getch();
if(c=='h'||c=='H')
sort_num(); /* 按學號排序 */
if(c=='m'||c=='M')
sort_name(); /* 按姓名排序 */
else
printf("\n 非法字元!\n");
}
/* 定義按學號排序信息管理系統的函數 */
void sort_num()
{
int i,j,k,n=0;
char c;
struct student record[N],*p,temp;
FILE *fp;
fp=fopen("d:\\lbh\\guanli.dat","r");
if(fp==NULL)
{
printf("\n 打開文件失敗!\n");
return;
}
p=record;
while(feof(fp)==0)
{
fscanf(fp,"%23s%15s%15s\n",p->num,p->name,p->tel);
p++;
n++;
}
fclose(fp);
printf("\n 按升序(s),還是按降序(j)?");
c=getch();
if(c=='s'||c=='S') /* 按學號的升序排列 */
for(i=0;i<n-1;i++) /* 選擇法排序 */
{
k=i;
for(j=i+1;j<n;j++)
if(strcmp((p+k)->num,(p+j)->num)>0)
k=j;
temp=*(p+k);
*(p+k)=*(p+i);
*(p+i)=temp;
}
else
if(c=='j'||c=='J') /* 按學號的降序排列 */
for(i=0;i<n-1;i++) /* 選擇法排序 */
{
k=i;
for(j=i+1;j<n;j++)
if(strcmp((p+k)->num,(p+j)->num)<0)
k=j;
temp=*(p+k);
*(p+k)=*(p+i);
*(p+i)=temp;
}
else
{
printf("\n 非法字元!\n");
return;
}
fp=fopen("d:\\lbh\\guanli.dat","w");
if(fp==NULL)
{
printf("\n 打開文件失敗!\n");
return;
}
for(p=record;p<record+n;p++)
{
fprintf(fp,"%23s%15s%15s\n",p->num,p->name,p->tel);
printf("%23s%15s%15s\n",p->num,p->name,p->tel);
}
fclose(fp);
}
/* 定義按姓名排序信息管理系統的函數 */
void sort_name()
{
int i,j,k,n=0;
char c;
struct student record[N],*p,temp;
FILE *fp;
fp=fopen("d:\\lbh\\guanli.dat","r+");
if(fp==NULL)
{
printf("\n 打開文件失敗!\n");
return;
}
p=record;
while(feof(fp)==0)
{
fscanf(fp,"%23s%15s%15s\n",p->num,p->name,p->tel);
p++;
n++;
}
fclose(fp);
printf("\n 按升序(s),還是按降序(j)?");
c=getch();
if(c=='s'||c=='S') /* 按姓名的升序排列 */
for(i=0;i<n-1;i++) /* 選擇法排序 */
{
k=i;
for(j=i+1;j<n;j++)
if(strcmp((p+k)->name,(p+j)->name)>0)
k=j;
temp=*(p+k);
*(p+k)=*(p+i);
*(p+i)=temp;
}
else
if(c=='j'||c=='J') /* 按姓名的降序排列 */
for(i=0;i<n-1;i++) /* 選擇法排序 */
{
k=i;
for(j=i+1;j<n;j++)
if(strcmp((p+k)->name,(p+j)->name)<0)
k=j;
temp=*(p+k);
*(p+k)=*(p+i);
*(p+i)=temp;
}
else
{
printf("\n 非法字元!\n");
return;
}
fp=fopen("d:\\lbh\\guanli.dat","w");
if(fp==NULL)
{
printf("\n 打開文件失敗!\n");
return;
}
for(p=record;p<record+n;p++)
fprintf(fp,"%23s%15s%15s\n",p->num,p->name,p->tel);
fclose(fp);
}
Ⅱ C語言菜單程序設計
//完整版寫完了
#include<stdio.h>
#defineN4
voidfun1(inta[],intn)//建立數組
{
inti;
printf("輸入數組a[%d] ",n);
for(i=0;i<N;i++)
scanf("%d",&a[i]);
}
voidfun2(inta[],intn)//輸出數組
{
inti;
for(i=0;i<n;i++)
printf("%d",a[i]);
printf(" ");
}
voidfun3(inta[],intn)//數組升序排序:選擇排序法
{
inti,j,t;
for(j=1;j<n;j++)//N次比較
for(i=0;i<j;i++)//每趟中比j次
if(a[i]>a[j])//與a[i]後面的元素進行比較
{
t=a[i];a[i]=a[j];a[j]=t;
}
}
voidfun4(inta[],intn)//查找數據
{
intb,i,k=0;
printf("輸入要查找的數:");
scanf("%d",&b);
for(i=0;i<n;i++)
{
if(a[i]==b)
printf("a[%d]=%d ",i,b);
elsek++;
if(k==n)printf("沒有這個數 ");
}
}
voidfun5(inta[],intn)//逆序輸出
{
inti;
for(i=n-1;i>=0;i--)
printf("%d",a[i]);
printf(" ");
}
voidmain()
{
intnum,a[N];
printf("1.建立數組 ");
printf("2.輸出數組 ");
printf("3.數組排序 ");
printf("4.查找數據 ");
printf("5.逆序輸出 ");
printf("0.退出程序 ");
while(1==1){
printf(" 請選擇功能:");
scanf("%d",&num);
switch(num)
{
case5:fun5(a,N);break;
case4:fun4(a,N);break;
case3:fun3(a,N);break;
case2:fun2(a,N);break;
case1:fun1(a,N);break;
case0:return;
}
}
}
Ⅲ C語言程序設計課程講什麼內容
C語言程序設計課程是入門級的程序設計課程,針對沒有或很少具有編程經驗的在職人員。課程通過學習C語言編程的基礎語法,對程序設計有一個基本的認識,為後續計算機專業課程以及面向對象程序設計課程的學習打下基礎。 課程主要內容:C語言程序基本結構及相關概念、變數、函數、語句、if條件語句、switch條件語句、for循環語句、while循環語句、數組、指針、字元串、結構體。
Ⅳ c語言:程序設計
樓主你好!
根據你的要求,代碼實現如下:
#include "conio.h"
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int main(){
char a[]="123456"; // 密碼
char ch;
char st[20];
int i,k=1; //k用於統計輸入密碼的次數
A:printf("請輸入密碼:");
i=0;
ch=getch(); /* getch()函數從鍵盤接收字元,不在屏幕上顯示 */
while(ch!=13) /* 13為換行字元ASCII碼 ,鍵盤輸入為回車鍵 */
{st[i]=ch;
putchar('*');
ch=getch();
i++;
}
st[i]= '