作者热门文章
- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章C语言实现医院管理系统由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
这个是C语言学完后的一个程序实践的内用。编写一个医院病人管理系统。这个程序有一些BUG,要操作得当,否则可能结果有问题。不过作为作业应付一下还是有模有样的.
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
|
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
typedef
struct
patient
{
char
ID[10];
char
name[10];
char
bingli[300];
int
cost[3];
struct
patient * next;
}node1;
typedef
struct
storage
{
int
amount[3];
int
price[3];
}node2;
node2 init(node2 temp)
{
temp.amount[0]=20;
temp.amount[1]=20;
temp.amount[2]=10;
temp.price[0]=5;
temp.price[1]=9;
temp.price[2]=16;
return
temp;
}
void
mainmeun()
{
printf
(
"\n"
);
printf
(
" 健康是快乐的源泉\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
(
"8.查询药品库存\n"
);
printf
(
"9.离开\n"
);
printf
(
"*********************************\n"
);
}
node1 * create(node1 *p1)
{
node1 *p;
p=(node1 *)
malloc
(
sizeof
(node1));
printf
(
"请输入病人ID\n"
);
scanf
(
"%s"
,p->ID);
while
(p1->ID&&
strcmp
(p1->ID,p->ID))
{
p1=p1->next;
}
if
(p1==NULL)
{
printf
(
"请输入病人姓名\n"
);
scanf
(
"%s"
,p->name);
strcpy
(p->bingli,
"0"
);
p->cost[0]=0;
p->cost[1]=0;
p->cost[2]=0;
p->next=NULL;
printf
(
"已注入您的信息\n"
);
return
p;
}
else
{
printf
(
"输入病人ID以存在,注册失败\n"
);
return
p;
}
}
node1 * insert(node1 * head,node1 *p)
{
node1 *p1;
if
(head==NULL)
{
head=p;
p->next=NULL;
}
else
{
p1=head;
while
(p1->next)
{
p1=p1->next;
}
p1->next=p;
p->next=NULL;
}
return
(head);
}
void
search(node1 *p1)
{
int
sum;
char
a[10];
printf
(
"请输入病人ID\n"
);
scanf
(
"%s"
,a);
while
(p1->ID&&
strcmp
(p1->ID,a))
{
p1=p1->next;
}
if
(p1)
{
printf
(
"ID:%s\n"
,p1->ID);
printf
(
"姓名:%s\n"
,p1->name);
printf
(
"病例:%s\n"
,p1->bingli);
printf
(
"消费记录:\n"
);
if
(p1->cost[0])
printf
(
"巴米尔\t%d\n"
,p1->cost[0]);
if
(p1->cost[1])
printf
(
"感冒灵\t%d\n"
,p1->cost[1]);
if
(p1->cost[2])
printf
(
"病毒灵\t%d\n"
,p1->cost[2]);
sum=p1->cost[0]*5+p1->cost[1]*9+p1->cost[2]*16;
printf
(
"总费用\t%d\n"
,sum);
}
else
printf
(
"该病人没有注册\n"
);
}
void
bingli(node1 *p)
{
char
a[10];
char
bingli[300];
char
enter[5]=
":\n"
;
printf
(
"请输入病人ID\n"
);
scanf
(
"%s"
,a);
while
(p->ID&&
strcmp
(p->ID,a))
{
p=p->next;
}
if
(p==NULL)
{
printf
(
"无该病人信息\n"
);
}
else
{
printf
(
"请写病例:\n"
);
scanf
(
"%s"
,bingli);
strcpy
(p->bingli,bingli);
strcat
(p->bingli,enter);
}
}
node2 buy(node1 *p,node2 temp)
{
char
i[10];
printf
(
"请输入病人ID\n"
);
scanf
(
"%s"
,i);
while
(p->ID&&
strcmp
(p->ID,i))
{
p=p->next;
}
while
(1)
{
int
a,b,c,d;
printf
(
"1.购买巴米尔\n"
);
printf
(
"2.购买感冒灵\n"
);
printf
(
"3.购买病毒灵\n"
);
printf
(
"0.退出\n"
);
scanf
(
"%d"
,&a);
switch
(a)
{
case
1:
do
{
printf
(
"现有库存%d\n"
,temp.amount[0]);
printf
(
"购买巴米尔数量:"
);
scanf
(
"%d"
,&b);
temp.amount[0]=temp.amount[0]-b;
p->cost[0]+=b*5;
}
while
(b>20);
break
;
case
2:
do
{
printf
(
"现有库存%d\n"
,temp.amount[1]);
printf
(
"购买感冒灵数量:"
);
scanf
(
"%d"
,&c);
temp.amount[1]=temp.amount[1]-c;
p->cost[1]+=c*9;
}
while
(c>20);
break
;
case
3:
do
{
printf
(
"现有库存%d\n"
,temp.amount[2]);
printf
(
"购买病毒灵数量:"
);
scanf
(
"%d"
,&d);
temp.amount[2]=temp.amount[2]-d;
p->cost[2]+=d*16;
}
while
(d>=10);
break
;
case
0:
return
temp;
}
}
}
void
list(node1 *p)
{
if
(p==NULL)
printf
(
"尚无病人信息\n"
);
else
{
do
{
printf
(
"病人ID:%s\n"
,p->ID);
printf
(
"病人姓名:%s\n"
,p->name);
printf
(
"病人病例:%s\n"
,p->bingli);
printf
(
"购买巴米尔费用:%d\n"
,p->cost[0]);
printf
(
"购买感冒灵费用:%d\n"
,p->cost[1]);
printf
(
"购买病毒灵费用:%d\n"
,p->cost[2]);
printf
(
"\n"
);
p=p->next;
}
while
(p!=NULL);
}
}
node1 * load(node1 *p)
{
char
ID[10],name[10],bingli[300];
int
cost0,cost1,cost2;
FILE
*fp;
fp=
fopen
(
"information.txt"
,
"r"
);
int
n=0;
node1 *p1,*p2;
while
(!
feof
(fp))
{
n++;
p1=(node1 *)
malloc
(
sizeof
(node1));
fscanf
(fp,
"%s"
,ID);
fscanf
(fp,
"%s"
,name);
fscanf
(fp,
"%s"
,bingli);
fscanf
(fp,
"%d"
,&cost0);
fscanf
(fp,
"%d"
,&cost1);
fscanf
(fp,
"%d"
,&cost2);
strcpy
(p1->ID,ID);
strcpy
(p1->name,name);
strcpy
(p1->bingli,bingli);
p1->cost[0]=cost0;
p1->cost[1]=cost1;
p1->cost[2]=cost2;
p1->next=NULL;
if
(n==1)
{
p=p1;
p2=p1;
}
else
{
p2->next=p1;
p2=p1;
}
}
fclose
(fp);
return
p;
}
void
save(node1 *p)
{
FILE
*fp;
fp=
fopen
(
"information.txt"
,
"w"
);
if
(p!=NULL)
do
{
fprintf
(fp,
"%s\n"
,p->ID);
fprintf
(fp,
"%s\n"
,p->name);
fprintf
(fp,
"%s\n"
,p->bingli);
fprintf
(fp,
"%d\n"
,p->cost[0]);
fprintf
(fp,
"%d\n"
,p->cost[1]);
fprintf
(fp,
"%d\n"
,p->cost[2]);
p=p->next;
}
while
(p!=NULL);
fclose
(fp);
}
void
liststock(node2 temp)
{
printf
(
"药品\t数量\t价格\t\n"
);
printf
(
"巴米尔\t%d\t%d\t\n"
,temp.amount[0],temp.price[0]);
printf
(
"感冒灵\t%d\t%d\t\n"
,temp.amount[1],temp.price[1]);
printf
(
"病毒灵\t%d\t%d\t\n"
,temp.amount[2],temp.price[2]);
}
chose()
{
node1 *head=NULL,*p;
node2 temp;
temp=init(temp);
while
(1)
{
mainmeun();
int
a;
scanf
(
"%d"
,&a);
switch
(a)
{
case
1:
p=create(head);
head=insert(head,p);
break
;
case
2:
search(head);
break
;
case
3:
bingli(head);
break
;
case
4:
temp=buy(head,temp);
break
;
case
5:
list(head);
break
;
case
6:
head=load(head);
break
;
case
7:
save(head);
break
;
case
8:
liststock(temp);
break
;
case
9:
printf
(
"谢谢使用\n"
);
return
(0);
default
:
printf
(
"输入有误,重新输入\n"
);
break
;
}
}
}
void
main()
{
chose();
}
|
运行时的截图,由于模块太多,就看看主页面吧.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:https://blog.csdn.net/dk_zhe/article/details/7171216 。
最后此篇关于C语言实现医院管理系统的文章就讲到这里了,如果你想了解更多关于C语言实现医院管理系统的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
如何在 Android 谷歌地图中显示附近的地点和地点详情,如 ATM、医院、餐馆等 这是我使用的链接: Showing nearby places & place details using Goo
我是一名优秀的程序员,十分优秀!