19 lines
314 B
Plaintext
19 lines
314 B
Plaintext
|
#define _CRT_SECURE_NO_WARNINGS
|
|||
|
#include <stdio.h>
|
|||
|
#include <Windows.h>
|
|||
|
|
|||
|
void main() {
|
|||
|
SetConsoleCP(1251);
|
|||
|
SetConsoleOutputCP(1251);
|
|||
|
printf("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> = ");
|
|||
|
int ch = getchar();
|
|||
|
|
|||
|
for (int c = ch; c <= ch + 19; c++) {
|
|||
|
printf("'%c' (%d)\n", c, c);
|
|||
|
}
|
|||
|
printf("\n\n\n");
|
|||
|
{
|
|||
|
int x;
|
|||
|
scanf("%d", &x);
|
|||
|
}
|
|||
|
}
|