19 lines
381 B
C++
19 lines
381 B
C++
#include<stdio.h>
|
|
#include<Windows.h>
|
|
#include<math.h>
|
|
|
|
void main()
|
|
{
|
|
SetConsoleCP(1251);
|
|
SetConsoleOutputCP(1251);
|
|
float R, p, S;
|
|
S = 0;
|
|
p = 3, 14;
|
|
printf("Формула площади круга равна S=p*R^2\n");
|
|
printf("Введите длину радиуса круга\n");
|
|
scanf_s("%f", &R);
|
|
printf("Площадь равна = %f\n", S = p * R * R);
|
|
}
|
|
|
|
|