20 lines
335 B
Plaintext
20 lines
335 B
Plaintext
#define _CRT_SECURE_NO_WARNINGS
|
|
#include <stdio.h>
|
|
#include <Windows.h>
|
|
|
|
void main() {
|
|
SetConsoleCP(1251);
|
|
SetConsoleOutputCP(1251);
|
|
printf("fgnjvngj");
|
|
printf("Ââåäèòå ñèìâîë = ");
|
|
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);
|
|
}
|
|
} |