This repository has been archived by the owner on Aug 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrating.h
90 lines (78 loc) · 1.67 KB
/
rating.h
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
/*
* @file rating.h
* @author Литвиненко А.В., 515а
* @date 09 липня 2022
* @brief
* За умовою задачі потрібно створити програму, яка дозволить впорядковувати дані про оцінки здобувачів кафедри комп’ютерних систем, мереж і кібербезпеки сортуванням.
*/
#ifndef FUNCS
#define FUNCS
/*
* Prints argument with some symbols on sides
*
* @param string
*/
void lineString(const char* string){
printf("-=-=-=-=-= [");
printf(" %s ", string);
printf("] =-=-=-=-=-\n");
}
/*
* Prints line like "-="
* A length of this string is:
* "-="(12) + "strlen(string)" + " "(2) + "-="(12)
* Or: 26 + strlen(string)
*
* @param string
*/
void line(const char* string){
for(int i=0;i<(strlen(string)+12+12+2)/2;++i){
printf("-=");
}
printf("\n");
}
/*
* Prints the menu of actions for user
*/
void Menu_of_actions(){
char opname[] = "Menu";
char menu[8][25] = {
" 0. Menu", // +
" 1. Show the table", // +
" 2. Add a record", // +
" 3. Sort by a course",
" 4. Sort by a group",
" 5. Sort by surname",
" 6. About", // +
" 7. Exit" // +
};
lineString(opname);
for(int i=0;i<8;++i){
printf("%s\n", menu[i]);
}
}
/*
* Prints information about author
*/
void About(){
char opname[] = "About";
lineString(opname);
char about[2][40] = {
"GitHub: https://github.com",
"Telegram: https://t.me/fectosha",
};
for(int i=0;i<2;++i){
printf("[+] %s\n", about[i]);
}
}
/*
* Exit the program
*/
void Exit(){
char opname[] = "Exit";
lineString(opname);
printf("Goodbye!\n");
line(opname);
exit(0);
}
#endif