g.cpp 218 B

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