1 2 3 4 5 6 7 8 9 10 11
//Finding of Height //Given q=1.5; Cd=0.6; L=5; g=9.81; //To Find H=q/((2/3)*Cd*L*sqrt(2*g)); H1=H^(2/3); Z=q-H1;disp(H1); disp("Height ="+string(Z)+" meter");