-
Notifications
You must be signed in to change notification settings - Fork 0
/
7.27-test.c
144 lines (142 loc) · 3.09 KB
/
7.27-test.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
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
//C++ Primer Plus 编程练习第4题C语言实现
//#define STRSIZE 50
//
//struct bop
//{
// char fullname[STRSIZE]; //real name
// char title[STRSIZE]; //job title
// char bopname[STRSIZE]; //secret BOP name
// int preference; // 0 = fullname, 1 = title, 2 = bopname
//};
//
//void print_display_by_name(struct bop bop_info[5]);
//void print_display_by_title(struct bop bop_info[5]);
//void print_display_by_bopname(struct bop bop_info[5]);
//void print_display_by_preference(struct bop bop_info[5]);
//
//int main(void)
//{
// char ch;
//
// struct bop bop_info[5] =
// {
// {"Wimp Macho", "doctor", "DR", 0},
// {"Raki Rhodes", "Junior Programmer", "JP", 1},
// {"Celia Laiter", "college", "MIPS", 2},
// {"Hoppy Hipman", "Analyst", "AN", 1},
// {"Pat Hand", "teacher", "LOOPY", 2}
// };
//
// printf("Benvolen Order of Programmers Report\n");
// printf("a. display by name b. display by title\n");
// printf("c. display by bopname d. display by preference\n");
// printf("q. quit\n");
//
// printf("Enter your choice: ");
// scanf("%c", &ch);
// do
// {
// switch (ch)
// {
// case 'a':
// print_display_by_name(bop_info);
// break;
// case 'b':
// print_display_by_title(bop_info);
// break;
// case 'c':
// print_display_by_bopname(bop_info);
// break;
// case 'd':
// print_display_by_preference(bop_info);
// break;
// }
//
// printf("Next choice: ");
// getchar();
//
// } while (scanf("%c", &ch) && ch != 'q');
//
// printf("Bye.\n");
//
// return 0;
//}
//
//void print_display_by_name(struct bop bop_info[5])
//{
// for (int i = 0; i < 5; i++)
// {
// printf("%s\n", bop_info[i].fullname);
// }
//}
//
//void print_display_by_title(struct bop bop_info[5])
//{
// for (int i = 0; i < 5; i++)
// {
// printf("%s\n", bop_info[i].title);
// }
//}
//
//void print_display_by_bopname(struct bop bop_info[5])
//{
// for (int i = 0; i < 5; i++)
// {
// printf("%s\n", bop_info[i].bopname);
// }
//}
//
//void print_display_by_preference(struct bop bop_info[5])
//{
// for (int i = 0; i < 5; i++)
// {
// switch (bop_info[i].preference)
// {
// case 0:
// printf("%s\n", bop_info[i].fullname);
// break;
// case 1:
// printf("%s\n", bop_info[i].title);
// break;
// case 2:
// printf("%s\n", bop_info[i].bopname);
// break;
// }
// }
//}
//C++ Primer Plus 编程练习第3题C语言实现
//int main(void)
//{
// char ch;
//
// printf("Please enter one of the following choices:\n");
// printf("c) carnivore p) pianist\n");
// printf("t) tree g) game\n");
//
// do
// {
// scanf("%c", &ch);
// getchar();
//
// switch (ch)
// {
// case 'c':
// printf("A maple is a carnivore.\n");
// break;
// case 'p':
// printf("A maple is a pianist.\n");
// break;
// case 't':
// printf("A maple is a tree.\n");
// break;
// case 'g':
// printf("A maple is a game.\n");
// default:
// printf("Please enter a c, p, t, or, g: ");
// }
// } while (ch != 'c' && ch != 'p' && ch != 't' && ch != 'g');
//
// return 0;
//}