16 lines
284 B
C++
16 lines
284 B
C++
#include<stdio.h>
|
|
#include<math.h>
|
|
#include<Windows.h>
|
|
void main()
|
|
{
|
|
SetConsoleCP(1251);
|
|
SetConsoleOutputCP(1251);
|
|
float h = 12.0;
|
|
float g = 9.8;
|
|
float t = sqrt(2 * h / g);
|
|
printf("ïðåäìåò óïàäåò ÷åðåç %f ñåêóä\n", h);
|
|
printf("ïðåäìåò êîñíåòñÿ çåìëè ÷åðåç %f ñåêóíä\n",t);
|
|
|
|
|
|
|
|
} |