-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsellcountUI.cpp
148 lines (142 loc) · 5.8 KB
/
sellcountUI.cpp
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
#include "struct.h"
#include <stdio.h>
#include <windows.h>
#include <string.h>
#include <stdlib.h>
#include <conio.h>
int cmp1(const void *a ,const void *b)
{
return ((nodeboxoffice *)a)->boxoffice-((nodeboxoffice *)b)->boxoffice;
}
nodeboxoffice *sellcountBLL();
//票房查看
void sellcountUI(){
system("cls");
printf("********************************************************************\n");
printf("**************************欢迎光临银河影院**************************\n\n\n");
printf("\033[40;35m 影院管理端\n\n\033[0m");
printf(" 票房查看\n\n");
printf(" 顺序查看\n");
printf(" 逆序查看\n");
printf(" tips:↑↓控制选择,回车确认\n");
printf(" Esc退出\n");
//printf("258");
nodeboxoffice *head=sellcountBLL();//获得销售文件统计后的链表
//将链表数据打开,存在数组中
nodeboxoffice *p=head;
p=p->next;
nodeboxoffice t[1000];
int i=0,j=0,x=0;
char c;
while(p!=NULL){
strcpy(t[j].name,p->name);
strcpy(t[j].id,p->id);
t[j].boxoffice=p->boxoffice;
j++;
p=p->next;
}
qsort(t,j,sizeof(t[0]),cmp1);
//至此,数组t中有i个元素,且票房数据升序
while(1){
c=getch();
if(c==27){//Esc退出
break;
}
if(c==72){//向上
if(i>1){
i--;
system("cls");
if(i==1){
printf("********************************************************************\n");
printf("**************************欢迎光临银河影院**************************\n\n\n");
printf("\033[40;35m 影院管理端\n\n\033[0m");
printf(" 票房查看\n\n");
printf("\033[40;32m 顺序查看\n\033[0m");
printf(" 逆序查看\n");
printf(" tips:↑↓控制选择,回车确认\n");
printf(" Esc退出\n");
}
}
}
if(c==80){//向下
if(i<2){
i++;
system("cls");
if(i==1){
printf("********************************************************************\n");
printf("**************************欢迎光临银河影院**************************\n\n\n");
printf("\033[40;35m 影院管理端\n\n\033[0m");
printf(" 票房查看\n\n");
printf("\033[40;32m 顺序查看\n\033[0m");
printf(" 逆序查看\n");
printf(" tips:↑↓控制选择,回车确认\n");
printf(" Esc退出\n");
}
if(i==2){
printf("********************************************************************\n");
printf("**************************欢迎光临银河影院**************************\n\n\n");
printf("\033[40;35m 影院管理端\n\n\033[0m");
printf(" 票房查看\n\n");
printf(" 顺序查看\n");
printf("\033[40;32m 逆序查看\n\033[0m");
printf(" tips:↑↓控制选择,回车确认\n");
printf(" Esc退出\n");
}
}
}
if(c=='\r'&&i==1){//顺序查看
system("cls");
printf("********************************************************************\n");
printf("**************************欢迎光临银河影院**************************\n\n\n");
printf("\033[40;35m 影院管理端\n\n\033[0m");
printf(" 票房查看\n\n");
printf("\033[40;32m 顺序查看\n\033[0m");
printf(" __________________________________\n");
printf(" 电影名称 电影ID 票房(元)\n");
for(x=j-1;x>=0;x--){
printf("%16s%14s %d(元)\n",t[x].name,t[x].id,t[x].boxoffice*50);
}
printf(" 按任意键返回");
getch();
system("cls");
printf("********************************************************************\n");
printf("**************************欢迎光临银河影院**************************\n\n\n");
printf("\033[40;35m 影院管理端\n\n\033[0m");
printf(" 票房查看\n\n");
printf("\033[40;32m 顺序查看\n\033[0m");
printf(" 逆序查看\n");
printf(" tips:↑↓控制选择,回车确认\n");
printf(" Esc退出\n");
}
if(c=='\r'&&i==2){//逆序查看
system("cls");
printf("********************************************************************\n");
printf("**************************欢迎光临银河影院**************************\n\n\n");
printf("\033[40;35m 影院管理端\n\n\033[0m");
printf(" 票房查看\n\n");
printf("\033[40;32m 逆序查看\n\033[0m");
printf(" __________________________________\n");
printf(" 电影名称 电影ID 票房(元)\n");
for(x=0;x<j;x++){
printf("%16s%14s %d(元)\n",t[x].name,t[x].id,t[x].boxoffice*50);
}
printf(" 按任意键返回");
getch();
system("cls");
printf("********************************************************************\n");
printf("**************************欢迎光临银河影院**************************\n\n\n");
printf("\033[40;35m 影院管理端\n\n\033[0m");
printf(" 票房查看\n\n");
printf(" 顺序查看\n");
printf("\033[40;32m 逆序查看\n\033[0m");
printf(" tips:↑↓控制选择,回车确认\n");
printf(" Esc退出\n");
}
}
while(p!=NULL){
head=head->next;
free(p);
p=head;
}
return;
}