This commit is contained in:
Адель Алимов 2024-11-15 13:32:31 +04:00
commit efd9179f59
6 changed files with 56 additions and 0 deletions

BIN
.vs/111/v17/.wsuo Normal file

Binary file not shown.

View File

@ -0,0 +1,27 @@
{
"Version": 1,
"WorkspaceRootPath": "C:\\Users\\User\\source\\repos\\111\\",
"Documents": [],
"DocumentGroupContainers": [
{
"Orientation": 0,
"VerticalTabListWidth": 256,
"DocumentGroups": [
{
"DockedWidth": 200,
"SelectedChildIndex": -1,
"Children": [
{
"$type": "Bookmark",
"Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}"
},
{
"$type": "Bookmark",
"Name": "ST:128:0:{1fc202d4-d401-403c-9834-5b218574bb67}"
}
]
}
]
}
]
}

3
.vs/ProjectSettings.json Normal file
View File

@ -0,0 +1,3 @@
{
"CurrentProjectSetting": null
}

View File

@ -0,0 +1,7 @@
{
"ExpandedNodes": [
""
],
"SelectedNode": "\\C:\\Users\\User\\Source\\Repos\\111",
"PreviewInSolutionExplorer": false
}

BIN
.vs/slnx.sqlite Normal file

Binary file not shown.

19
1 Normal file
View File

@ -0,0 +1,19 @@
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <Windows.h>
void main() {
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
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);
}
}