blob: f279c5ec8c20d1f751008327e235d0255aa52d2d (
plain)
1
2
3
4
5
6
7
8
9
|
//cricket ball
//refer fig. 13.15
u=20 //m/sec
alpha=30 //degree
Y0=-1.5 //m
t=2.179 //sec
//Distance of the fielder from the wickets
Range=u*t*cosd(alpha) //m
printf("The distance of the fielder from the wickets=%.3f m",Range)
|