blob: b3f8c73e5566340d20af315fa311ddf416d13285 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Finding of Velocity of Projectile
//Given
theta=30;
k=1.4;
R=287;
T=268;
//To Find
Ma=sin(theta);
C=sqrt(k*R*T);
V=Ma*C;
disp("Velocity of Projectile ="+string(V)+" m/sec");
|