2024-11-01 16:02:17 +04:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <math.h>
|
|
|
|
|
#include <Windows.h>
|
|
|
|
|
|
|
|
|
|
void main()
|
|
|
|
|
{
|
|
|
|
|
SetConsoleCP(1251);
|
|
|
|
|
SetConsoleOutputCP(1251);
|
|
|
|
|
printf("Введите радиус шара:");
|
|
|
|
|
float R;
|
|
|
|
|
scanf_s("%f", &R);
|
|
|
|
|
float pi = 3.14f;
|
|
|
|
|
float v = (4.0 / 3.0) * pi * (R * R * R);
|
|
|
|
|
printf("Обьем шара равен = %f ", v);
|
|
|
|
|
}
|