g.cpp 182 B

123456789101112
  1. #include <iostream>
  2. #include <math.h>
  3. using namespace std;
  4. int main(){
  5. double h,v,t;
  6. cin>>h;
  7. t=sqrt(h/4.9);
  8. v=9.8*t;
  9. cout<<v;
  10. system("pause");
  11. return 0;
  12. }