Compare commits

..

No commits in common. "ветка2" and "main" have entirely different histories.

View File

@ -1,18 +1,9 @@
#include <stdio.h> #include <stdio.h>
#include<Windows.h>
#include<math.h>
void main() void main()
{ {
SetConsoleCP(1251); printf("Sevodnyasev Stanislav\n");
SetConsoleOutputCP(1251); printf("FIST\n");
float R, p, S; printf("PIbd-13\n");
S = 0; printf("04.09.2024");
p = 3, 14;
printf("Формула площади круга равна S=p*R^2\n");
printf("Введите длину радиуса круга\n");
scanf_s("%f", &R);
printf("Площадь равна = %f\n", S = p * R * R);
} }