14 lines
275 B
C++
14 lines
275 B
C++
#include <stdio.h>
|
|
#include <Windows.h>
|
|
void main()
|
|
{
|
|
SetConsoleCP(1251);
|
|
SetConsoleOutputCP(1251);
|
|
float V;
|
|
printf("ââĺäčňĺ îáúĺě áŕńńĺéíŕ â ěĺňđŕő:");
|
|
scanf_s("%f", V);
|
|
float b=6;
|
|
float c=2;
|
|
float a = V / (b * c);
|
|
printf("ăëóáčíŕ áŕńńĺéíŕ đŕâíŕ ", a);
|
|
} |