Compare commits

..

2 Commits

Author SHA1 Message Date
dda09b71d0 3 2024-11-21 09:02:21 +04:00
f56568eb33 2 2024-11-21 09:00:36 +04:00

View File

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