ваыва
This commit is contained in:
parent
d542afff9c
commit
78cc9054cb
@ -1 +1,15 @@
|
||||
|
||||
#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);
|
||||
}
|
Loading…
Reference in New Issue
Block a user