C语言学生信息管理系统小项目

时间:2021-08-18 00:01:50

本文为大家分享了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
/*
运行环境:我是在linux里面用gcc编译的,在windows里应该也能运行,用的一些文件库函数都是c标准库,没有用linux的系统调用(纠正一下:system("clear")这个系统调用是linux的,windows里面用system("cls") )
 
(1)问题描述
 学生信息包括:学号,姓名,年龄,性别,出生年月,地址,电话,E-mail等。试设计一学生信息管理系统,使之能提供以下功能:
 1.系统以菜单方式工作
 2.学生信息录入功能(学生信息用文件保存)---输入
 3.学生信息浏览功能——输出
 4.查询、排序功能——算法
  1、按学号查询
  2、按姓名查询
 5.学生信息的删除与修改(可选项)
(2)功能要求
 1.界面简单明了;
 2.有一定的容错能力,比如输入的成绩不在0~100之间,就提示不合法,要求重新输入;
 3.最好用链表的方式实现
*/
 
/*
界面:
-------------学生信息管理系统---------------
 1. 学生信息录入
 2. 学生信息浏览
 3. 学生信息查询
  1.按学号查询
  2.按姓名查询
 4. 学生信息的删除与修改
--------------------------------------------
*/
 
 
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
 
struct student_info {
 int s_no;
 char name[20];
 int age;
 char sex[10];
 int birth;
 char addr[30];
 char tele[30];
 char email[30];
 struct student_info *next;
};
 
void menue(void);
int info_input(void);
int info_review(void);
int info_search(void);
 
int main(void)
{
 menue();
 
 return 0;
}
 
void menue(void)
{
 int choose;
 
 system("clear");
 
 printf("-------------学生信息管理系统---------------\n");
 printf("\t\t1. 学生信息录入\n");
 printf("\t\t2. 学生信息浏览\n");
 printf("\t\t3. 学生信息查询\n");
 printf("\t\t4. 学生信息的删除与修改\n");
 printf("\t\t0. 退出系统\n");
 printf("--------------------------------------------\n");
 
 printf("请输入您的选择(0~~4): ");
 scanf("%d", &choose);
 
 switch (choose) {
  case 0:
   exit(0);
   break;
  case 1:
   info_input();
   break;
  case 2:
   info_review();
   break;
  case 3:
   info_search();
   break;
 }
 
 while (choose > 4 || choose < 1) {
  printf("您输入了一个无效的选择,请重新输入(0-4): ");
  scanf("%d", &choose);
 }
 
}
 
/*
 ssize_t read(int fd, void *buf, size_t count);
 ssize_t write(int fd, const void *buf, size_t count);
 int open(const char *pathname, int flags, mode_t mode);
 
 FILE *fopen(const char *path, const char *mode);
 size_t fwrite(const void *ptr, size_t size, size_t nmemb,
    FILE *stream);
*/
 
int creat_list(void)
{
 return 0;
}
 
// 1. 学生信息录入
int info_input(void)
{
 struct student_info *head = NULL, *rear = NULL;
 FILE *fp;
 int flag = 1;
 
 head = (struct student_info *)malloc(sizeof(struct student_info));
 rear = head;
 
 while (flag) {
  struct student_info *stu = NULL;
 
  stu = (struct student_info *)malloc(sizeof(struct student_info));
 
  // FILE *fopen(const char *path, const char *mode);
  fp = fopen("stuinfo.txt", "a+b");
  fseek(fp, sizeof(struct student_info), 2);
 
 
  system("clear");
  printf("-----请依次输入学生的信息-----\n");
 
 
 
  printf("学号: ");
  scanf("%d", &stu->s_no);
 
  printf("姓名: ");
  scanf("%s", stu->name);
 
  printf("年龄: ");
  scanf("%d", &stu->age);
 
  printf("性别: ");
  scanf("%s", stu->sex);
 
  printf("出生年月: ");
  scanf("%d", &stu->birth);
 
  printf("地址: ");
  scanf("%s", stu->addr);
 
  printf("电话: ");
  scanf("%s", stu->tele);
 
  printf("E-mail: ");
  scanf("%s", stu->email);
 
  fwrite(stu, sizeof(struct student_info), 1, fp);
 
  rear->next = stu;
  rear = stu;
 
  fclose(fp);
 
  printf("继续输入请按1,返回上一级菜单请按2,退出请按0: ");
  scanf("%d", &flag);
 
  if (flag == 0) {
   exit(0);
  }
 
  if (flag == 1) {
   continue;
  }
 
  if (flag == 2) {
   menue();
   break;
  }
 }
 
 rear->next = NULL;
 
 return 0;
}
 
// 2. 学生信息浏览
// size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream);
int info_review(void)
{
 struct student_info stu;
 
 int ret = 1;
 int flag = 0;
 
 FILE *fp = fopen("stuinfo.txt", "rb");
 //int fd = open("stuinfo.txt", O_RDONLY);
 
 
 if (fp == NULL) {
  perror("fopen");
  exit(0);
 }
 
 while (ret != 0) { /*返回值为1时表示读取的字节数不足sizeof(struct student_info), 返回0表示读取成功*/
  /* */
  ret = fread(&stu, sizeof(struct student_info), 1, fp);
  //read(fd, stdout, sizeof(struct student_info));
 
  printf("------------------------------------------------------------------------------------------------------\n");
  printf("%d\t%s\t%d\t%s\t%d\t%s\t%s\t%s\n", stu.s_no, stu.name, stu.age, stu.sex, stu.birth, stu.addr, stu.tele, stu.email);
 }
 
 fclose(fp);
 printf("=====================^-^===================== ====================^-^==================\n");
 
 printf("退出请按0, 返回上一级菜单请按1: ");
 scanf("%d", &flag);
 
 if (flag == 0) {
  exit(0);
 }
 
 if (flag == 1) {
  menue();
  exit(0);
 }
 
 return 0;
}
 
// 学生信息查询
 
int info_search(void)
{
 system("clear");
 
 struct student_info *stu1 = NULL, *stu2 = NULL;
 stu1 = (struct student_info *)malloc(sizeof(struct student_info));
 stu2 = (struct student_info *)malloc(sizeof(struct student_info));
 
 int ret = 1, i = 0, flag = 1;
 
 FILE *fp = fopen("stuinfo.txt", "rb");
 
 printf("=====按姓名查询请输入1, 按学号查询请输入2=====\n");
 scanf("%d", &i);
 
 while (flag) {
  if (i == 1) {
   printf("请输入学生的姓名: ");
   scanf("%s", stu1->name);
 
   do {
    if (ret == 0) {
     printf("没有这个人哦^*^\n");
     exit(0);
    }
    ret = fread(stu2, sizeof(struct student_info), 1, fp);
   } while (strcmp(stu1->name, stu2->name));
 
   printf("您要找的人信息如下: \n");
   printf("%d\t%s\t%d\t%s\t%d\t%s\t%s\t%s\n", stu2->s_no, stu2->name, stu2->age, stu2->sex, stu2->birth, stu2->addr, stu2->tele, stu2->email);
  }
 
  if (i == 2) {
   printf("请输入学生的学号: ");
   scanf("%d", stu1->s_no);
 
   do {
    if (ret == 0) {
     printf("没有这个人哦^*^\n");
     exit(0);
    }
    ret = fread(stu2, sizeof(struct student_info), 1, fp);
   } while (stu2->s_no != stu1->s_no);
 
   printf("您要找的人信息如下: \n");
   printf("%d\t%s\t%d\t%s\t%d\t%s\t%s\t%s\n", stu2->s_no, stu2->name, stu2->age, stu2->sex, stu2->birth, stu2->addr, stu2->tele, stu2->email);
  }
 
  printf("=====继续查询请按1,返回上一级菜单请按2=====\n");
  scanf("%d", &flag);
 
  if (flag == 1)
   continue;
  if (flag == 2) {
   menue();
   break;
  }
 }
 return 0;
 
}
 
// 学生信息删除
 
int info_delete(void)
{
 
}
 
// 学生信息修改
int info_alter(void)
{
 
}

还有部分功能未完成,下次再写吧(写的有点烦-_-)
程序截图:

C语言学生信息管理系统小项目

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

原文链接:http://blog.csdn.net/sl1248/article/details/51071933