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 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
| #include<stdio.h> #include<stdlib.h> #include<string.h> #include<conio.h>
struct med { int elecode; char name[10]; double price; char type[5]; int prod; int shelf; int stock; struct med* next;
}; struct med *p; void menu() { printf("欢迎使用本管理系统\n" "选择一项功能:\n" "1.录入信息\n" "2.打印信息\n" "3.保存信息\n" "4.读取信息\n" "5.统计药品总数\n" "6.查找符合条件的药品\n" "7.修改信息\n" "8.删除信息\n" "9.退出\n"); } void remove(); void build(); void print(struct med *p); void sum(struct med *p); void save(struct med *p); void find(struct med *p); void modify(struct med *p); void read(); int user();
int main() { system("color 70"); int n; while(user()!=1){ continue; } while(1) { menu(); scanf("%d",&n); switch(n) { case 9: return 0; case 1: build(); break; case 2: print(p); break; case 3: save(p); break; case 4: read(); break; case 5: sum(p); break; case 6: find(p); break; case 7: modify(p); break; case 8: remove(); break; default: printf("Wrong num\n"); getchar(); getchar(); system("cls"); continue; } }
}
int user(){ int n; printf("欢迎使用本系统,请先注册或登录:\n"); printf("1.注册/2.登录:"); scanf("%d",&n); char id[10],pass[10]; if(n==1) { printf("输入:用户名 密码: (均只能为小于8位的字母或数字)"); scanf("%s %s",id,pass); FILE* fp; fp = fopen(".\\userinfo.txt", "a"); for(int i=0; id[i]!='\0'; i++) { id[i]+=2; } for(int i=0; pass[i]!='\0'; i++) { pass[i]+=2; } fprintf(fp,"%s ",id); fprintf(fp,"%s ",pass); fclose(fp); printf("保存成功\n"); system("pause"); system("cls"); return 0; } if(n==2) { FILE *fp; fp=fopen(".\\userinfo.txt","r"); if(fp==NULL) { printf("还未注册过"); } else { printf("输入用户名: "); char a[10],b[10]; scanf("%s",a); for(int i=0; a[i]!='\0'; i++) { a[i]+=2; } printf("输入密码:"); for(int g=0; g<10; g++) { b[g]=getch(); if (b[g]=='\x0d') { b[g]='\0'; break; } b[g]=b[g]+2; printf("*"); } while(fscanf(fp,"%s",id)==1) { if(strcmp(id,a)==0) { fscanf(fp,"%s",pass); if(strcmp(pass,b)==0) { printf("正在进入管理系统...."); system("pause"); system("cls"); return 1; } } } printf("用户名或密码错误"); system("pause"); system("cls"); } return 0; } }
void build() { struct med *head=NULL,*nextp; if(p!=NULL) { head=p; while(head->next!=NULL) { head=head->next; } } printf("顺序输入药品的:编码 名称 价格 药品类型(处方药/非处方药) 生产日期(年) 保质期(年) 库存,-1结束\n"); nextp=(struct med*)malloc(sizeof(struct med)); nextp->next=NULL; scanf("%d",&nextp->elecode); while(nextp->elecode!=-1) { scanf("%s %lf %s %d %d %d",nextp->name,&nextp->price,nextp->type,&nextp->prod,&nextp->shelf,&nextp->stock); if(head==NULL) { p=nextp; head=p; } else { head->next=nextp; head=head->next; } nextp=(struct med*)malloc(sizeof(struct med)); nextp->next=NULL; scanf("%d",&nextp->elecode); } printf("成功录入,按回车返回"); system("pause"); system("cls"); } void print(struct med *p) { system("cls"); printf("编码 名称 价格 药品类型 生产日期(年) 保质期(年) 库存\n"); while(p) { printf("%d %s %.2lf %5s %10d %10d %14d\n",p->elecode,p->name,p->price,p->type,p->prod,p->shelf,p->stock); p=p->next; } }
void sum(struct med *p) {
int sum=0; int i=0; while(p) { sum+=p->stock; p=p->next; i++; } printf("药品种类:%d\n药品总量:%d",i,sum); system("pause"); system("cls");
}
void find(struct med *p) { printf("选择查询内容:\n1.库存小于10或可能在一年内过期的药\n2.按编码查询\n3.按价格区间查询\n"); int n; int num; scanf("%d",&num); if(num==1) { printf("今年是__年: "); scanf("%d",&n); printf("编码 名称 价格 药品类型 生产日期(年) 保质期(年) 库存\n"); while(p) { if(p->stock<10||p->shelf-n<2) printf("%d %s %.2lf %5s %10d %10d %14d\n",p->elecode,p->name,p->price,p->type,p->prod,p->shelf,p->stock); p=p->next; } }
else if(num==2) { printf("输入编码: "); scanf("%d",&n); printf("名称 价格 药品类型 生产日期(年) 保质期(年) 库存\n"); while(1) { if(p->elecode==n) { break; } p=p->next; if(p==NULL) break; } if(p!=NULL) printf("%s %.2lf %5s %10d %10d %14d\n",p->name,p->price,p->type,p->prod,p->shelf,p->stock); else printf("Wrong Number\n"); } else if(num==3) { int min,max; printf("输入最低和最高价格,以空格分开: "); scanf("%d %d",&min,&max); printf("编码 名称 价格 药品类型 生产日期(年) 保质期(年) 库存\n"); while(p) { if(p->price>=min&&p->price<=max) printf("%d %s %.2lf %5s %10d %10d %14d\n",p->elecode,p->name,p->price,p->type,p->prod,p->shelf,p->stock); p=p->next; } } else printf("错误的选项\n"); system("pause"); system("cls"); }
void modify(struct med *p) { int num; printf("输入修改药品的编码:\n"); scanf("%d",&num); while(p) { if(p->elecode!=num) { p=p->next; } else break; } if(p==NULL) printf("编码错误"); else { printf("输入修改药品信息:\n"); printf("顺序输入药品的:名称 价格 药品类型(处方药/非处方药) 生产日期(年) 保质期(年) 库存\n"); scanf("%s %lf %s %d %d %d",p->name,&p->price,p->type,&p->prod,&p->shelf,&p->stock); printf("成功修改\n"); } system("pause"); system("cls"); }
void remove() { printf("输入删除药品编码:"); int n; scanf("%d",&n); struct med *head,*nextp,*d; head=p; nextp=p; if(head->elecode==n) { p=p->next; free(head); printf("成功删除"); } else { head=head->next; while(head) { if(head->elecode!=n) { head=head->next; nextp=nextp->next; } else break; } if(head==NULL) printf("错误编码"); else { nextp->next=head->next; free(head); printf("成功删除"); } } getchar(); getchar(); system("cls"); }
void save(struct med *p) { FILE* fp; fp = fopen(".\\medinfo.txt", "w"); while (p) { fprintf(fp,"%d %s %.2lf %s %d %d %d\n",p->elecode,p->name,p->price,p->type,p->prod,p->shelf,p->stock);
p = p->next; } fclose(fp); printf("保存成功\n"); getchar(); getchar(); system("cls"); }
void read() { if(p!=NULL) { struct med *nextp=p->next; free(p); while(nextp) { p=nextp; nextp=nextp->next; free(p); } } FILE *fp; fp=fopen(".\\medinfo.txt","r"); if(fp==NULL) { printf("文件无法打开"); } else { struct med *nextp,*head; head=NULL; nextp=(struct med*)malloc(sizeof(struct med)); nextp->next=NULL; while(fscanf(fp,"%d",&nextp->elecode)==1) { fscanf(fp,"%s",nextp->name); fscanf(fp,"%lf",&nextp->price); fscanf(fp,"%s",&nextp->type); fscanf(fp,"%d",&nextp->prod); fscanf(fp,"%d",&nextp->shelf); fscanf(fp,"%d",&nextp->stock); if(head==NULL) { head=nextp; p=head; } else { head->next=nextp; head=head->next; } nextp=(struct med*)malloc(sizeof(struct med)); nextp->next=NULL; } fclose(fp); } getchar(); getchar(); system("cls"); }
|