Branch2 #1

Open
subarist73 wants to merge 2 commits from Branch2 into Branch1
2 changed files with 18 additions and 0 deletions

0
test.txt Normal file
View File

18
л2нп.cpp Normal file
View File

@ -0,0 +1,18 @@
#include<stdio.h>
#include<math.h>
#include<Windows.h>
void main()
{
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
float P;
float r;
float s;
printf("P");
scanf_s("%f", &P);
printf("r âďčń");
scanf_s("%f", &r);
s = P * r * 0.5;
printf("ďë ěíîăîóă %f P %f r%f \n", s, P, r);
}