-
Notifications
You must be signed in to change notification settings - Fork 0
/
1.cpp
31 lines (26 loc) · 1.13 KB
/
1.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
#include <iostream>
#include <windows.h>
#include <time.h>
using namespace std;
void SetColor(int text, int background)
{
/* процедура для смены цвета шрифта */
HANDLE hStdOut = GetStdHandle(STD_OUTPUT_HANDLE);
SetConsoleTextAttribute(hStdOut, (WORD)((background << 4) | text));
}
void printspace(int s) {
/* для вывода пробелов (для центрироывния текста) */
for (int i = 0; i < s; i++)
cout << ' ';
}
void printlogo() {
SetColor(7, 0);
printspace(16); cout << " ## ## ## ## ###### ####### \n";
printspace(16); cout << " ## ## ## ## ## ## ## ## \n";
printspace(16); cout << " ## ## ## ## ## ## ## \n";
SetColor(8, 0);
printspace(16); cout << " ### ## ## ###### ## ## \n";
printspace(16); cout << " ## ## ## ## ## ## ## \n";
printspace(16); cout << " ## ## ## ## ## ## ## ## \n";
printspace(16); cout << " ## ## ### ###### ####### \n";
}