服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - C/C++ - C语言实现学生学籍管理系统

C语言实现学生学籍管理系统

2021-06-18 14:35xiaoyuyyun C/C++

这篇文章主要为大家详细介绍了C语言实现学生学籍管理系统,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了C语言实现学生学籍管理系统的具体代码,供大家参考,具体内容如下

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<string.h>
#include<windows.h>
 
 
//**********************************结构体*************************************
struct score
{
 char class_num[10];
 char person_num[10];
 char name[15];
 char sex;
 int num;
}stu;
 
 
//******************************输出*******************************************
void print1()            //输出科目函数
{
printf("班级  学号  姓名    性别  分数\n");
}
 
//*****************************菜单********************************************
int menu()             //菜单函数
{
 
 char i;
 printf("\n\n\n\n");
 puts("\t\t**********************主菜单******************\t\n");
 puts("\t\t\t\t1.学生信息输入        \n");
 puts("\t\t\t\t2.学生信息浏览        \n");
 puts("\t\t\t\t3.学生信息检索        \n");
 puts("\t\t\t\t4.学生信息修改        \n");
 puts("\t\t\t\t5.学生信息删除        \n");
 puts("\t\t\t\t6. 退 出 系 统        \n");
 puts("\t\t**********************************************\t\n");
 printf("\t\t\t 请选择(1-6):[ ]\b\b");
 i=getchar();
 system("cls");
 return i;
}
 
//**********************输入函数*******************************************
void Enter()
{
 
 FILE *fp;
 char ch;
 if((fp=fopen("f:\\zimou.txt","a+"))==NULL)
 {
  printf("\nCannot open file!\n");
  getch();
  exit(1);
 }
 do
 {
  printf("请输入班级:");scanf("%s",stu.class_num);getchar();
  printf("\n");
  printf("请输入学号:");gets(stu.person_num);
  printf("\n");
  printf("请输入姓名:");gets(stu.name);
  printf("\n");
  printf("性  别(m/f):");scanf("%c",&stu.sex);getchar();
  printf("\n");
  printf("分  数:");scanf("%d",&stu.num);getchar();
  printf("\n");
  fwrite(&stu,sizeof(stu),1,fp);
  printf("继续(y/n)?[ ]\b\b");
  ch=getchar(); getchar();
 }while(ch=='y'||ch=='Y');
 fclose(fp);
 system("cls");
}
 
 
 
//*****************浏览函数**********************************************
void Browse()
{
 
FILE *fp;
int total=0;
if((fp=fopen("f:\\zimou.txt","a+"))==NULL)
{
 printf("\tCan not open the inform file!");
 getch();
 exit(1);
}
while(fread(&stu,sizeof(stu),1,fp)==1)
{
 total++;
 if(total==1)
 print1();
 printf("%-10s%-10s%-20s",stu.class_num,stu.person_num,stu.name);
 printf("%-8c",stu.sex);
 printf("%-4d ",stu.num);
 printf("\n");
}
fclose(fp);
printf("\n\n\t共有 %d 条记录!\n",total);
printf("\tpress any key to continue!");
getchar();
getchar();
system("cls");
 
}
 
 
//*******************查询函数*********************************************
void Query()
{
 FILE * fp;
 char num1[10];
 char ch;
if((fp=fopen("f:\\zimou.txt","a+"))==NULL)
{
 printf("\tCan not open the inform file!");
 getch();
 exit(1);
}
do
{
 getchar();
 rewind(fp);
 printf("\n请输入学号查询:");
 gets(num1);
 while(fread(&stu,sizeof(stu),1,fp)==1)
  if(strcmp(num1,stu.person_num)==0)
  {
   print1();
   printf("%-10s%-10s%-20s",stu.class_num,stu.person_num,stu.name);
   printf("%-8c",stu.sex);
   printf("%-4d ",stu.num);
   printf("\n");
   break;
  }
  puts("\n");
 printf("继续查询?(Y/N):[ ]\b\b");
 ch=getchar();
}while(ch=='Y'||ch=='y');
fclose(fp);
system("cls");
}
 
 
//**********************学生成绩修改函数***********************************
 
void Recopose()
{
  FILE * fp1,* fp2;
  char num1[10];
  char ch;
  getchar();
 do
 {
  if((fp1=fopen("f:\\zimou.txt","a+"))==NULL)
  {
  printf("\tCan not open the infom file!");
  getch();
  exit(1);
  }
  if((fp2=fopen("f:\\ziye.txt","a+"))==NULL)
  {
  printf("\tCan not creat the temp file!");
  getch();
  exit(1);
  }
  printf("请输入想要修改的学号:");
  gets(num1);
while(fread(&stu, sizeof(stu),1,fp1)==1)
{
  if(strcmp(num1,stu.person_num)==0)
  {
   print1();
   printf("%-10s%-10s%-20s",stu.class_num,stu.person_num,stu.name);
   printf("%-8c",stu.sex);
   printf("%-4d ",stu.num);
   printf("\n");
   printf("\n\nPlease input the new information:\n");
   printf("\t班级代号:");gets(stu.class_num);
   printf("\t学生学号:");gets(stu.person_num);
   printf("\t学生姓名:"); gets(stu.name);
   printf("\t学生性别:");gets(&stu.sex);
   printf("\t学生成绩:");scanf("%d",&stu.num); getchar();
  }
 fwrite(&stu,sizeof(stu),1,fp2);
 }
 fclose(fp1);
 fclose(fp2);
 printf("修改成功!\n");
 remove("f:\\zimou.txt");
 rename("f:\\ziye.txt","f:\\zimou.txt");
 printf("继续修改?(Y/N):[ ]\b\b");
 ch=getchar(); getchar();
}while(ch=='Y'||ch=='y');
 system("cls");
}
 
 
//*********************删除函数******************************************
void Delete()
{
  FILE * fp1,* fp2;
  int flag;
  char num1[10];
  char ch;
  getchar();
  do
  {
  if((fp1=fopen("f:\\zimou.txt","a+"))==NULL)
  {
   printf("\tCan not open the inform file!");
   getch();
   exit(1);
  }
  if((fp2=fopen("f:\\ziye.txt","a+"))==NULL)
  {
   printf("\tCan not creat the temp file!");
   getch();
   exit(1);
  }
  printf("请输入你要删除的学生的学号:");
  gets(num1);
  flag=0;
  while(fread(&stu,sizeof(stu),1,fp1)==1)
  {
   if(strcmp(num1,stu.person_num)==0)
   {
    print1();
    printf("%-10s%-10s%-20s",stu.class_num,stu.person_num,stu.name);
    printf("%-8c",stu.sex);
    printf("%-4d ",stu.num);
    printf("\n");
    flag=1;
   }
   else
    fwrite(&stu,sizeof(stu),1,fp2);
  }
  fclose(fp1);
  fclose(fp2);
  if(flag==1)
  {
   remove("f:\\zimou.txt");
   rename("f:\\ziye.txt","f:\\zimou.txt");
  }
  else
   printf("Can not find this record!\n");
  printf("继续删除?(Y/N):[ ]\b\b");
  ch=getchar(); getchar();
  }while(ch=='Y'||ch=='y');
  system("cls");
}
 
 
//***********************************退出**************************************
void Exit()
{
 puts("\n\t\t\t\t感谢使用本系统!!\n\n\t\t\t\t有任何问题请联系:1005483758@qq.com \n");
 exit(0);
}
 
//******************欢迎界面**********************************
void Welcome()
{
  printf("\n\n");
 printf(" \t┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓\n");
 printf(" \t┃**********************************************************┃\n");
 printf(" \t┃***┏━━━━━━━━━━━━━━━━━━━━━━━━┓***┃\n");
 printf(" \t┃***┃************************************************┃***┃\n");
 printf(" \t┃***┃***           ****┃***┃\n");
 printf(" \t┃***┃***  欢迎使用学生成绩管理系统   ****┃***┃\n");
 printf(" \t┃***┃***           ****┃***┃\n");
 printf(" \t┃***┃***           ****┃***┃\n");
 printf(" \t┃***┃***     制作人:XXY   ****┃***┃\n");
 printf(" \t┃***┃***           ****┃***┃\n");
 printf(" \t┃***┃***      2013.6.20  ****┃***┃\n");
 printf(" \t┃***┃***           ****┃***┃\n");
 printf(" \t┃***┃************************************************┃***┃\n");
 printf(" \t┃***┗━━━━━━━━━━━━━━━━━━━━━━━━┛***┃\n");
 printf(" \t┃**********************************************************┃\n");
 printf(" \t┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛\n");
 puts(" \n\t      ① 管理员登陆!       \n");
 puts(" \n\t      ② 游客 登陆!       \n");
 printf("\n请选择登陆(1 or 2):[ ]\b\b"); / /左移一位“\b ”
}
 
//*****************************主函数****************************************
int main()
{
  int i,k=0;
  char username[15],pwd[7],c;
  system("color 5e");//颜色
  Welcome();
   c=getchar();getchar();
  if (c=='1')
  {
   system("cls");//跳转页面。
   puts("\n\n\n\n\n\n\n\t\t\t\t管 理 员 登 陆!\n\n\n\n\n\t\t\t\t 请 登 陆!");
   getchar();
   for(i=0;i<3;i++)
    {
      printf("\n请输入用户名:");
     gets(username);
     printf("\n请输入6位密码:");
     gets(pwd);
     //判断条件
     if((strcmp(username,"xiaxianyun")==0)&&(strcmp(pwd,"123456")==0))
     {
      printf("\n您已经成功登录\n");
      k=1;
      for(i=0;i<20;i++)
      {
        printf(".");
        Sleep(100);
      }
     system("cls");
  
      while(1)
      switch(menu())
      {
       case '1':Enter();break;
       case '2':Browse();break;
       case '3':Query();break;
       case '4':Recopose();break;
       case '5':Delete();break;
       case '6':Exit();break;
      }
      break;
     }
    else
     printf("\n用户名或密码无效 请重新输入:\n");
     continue;
    }
     if(k==0)
    printf("\n连续输入错误3次 将退出程序\n");
  Sleep(2000);
  exit(1);
  }
  else if(c=='2')//游客登录
  {
   system("cls");//跳转页面。
   puts("\n\n\n\n\n\n\n\t\t\t\t欢 迎 游 客 进 入!\n\n\n\n\n\t\t\t\t 请 确 定!");
   getchar();
   system("cls");
   while(1)
    switch(menu())
    {
     case '1':Enter();break;
     case '2':Browse();break;
     case '3':Query();break;
     case '4':system("cls");getchar();
     puts("\n\n\t\t对不起你没有权限修改!\n\n");
     printf("\t\tpress any key to continue!");getchar();system("cls");break;
     case '5':system("cls");getchar();
     puts("\n\n\t\t对不起你没有权限删除!\n\n");
     printf("\t\tpress any key to continue!");getchar();system("cls");break;
     case '6':Exit();break;
    }
  
 return 0;
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://blog.csdn.net/xiaoyun_ny/article/details/18443227

延伸 · 阅读

精彩推荐