blob: 992874d17690c292a7b0791472f51ca11c7a6111 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
////Given
m=50*10**-3 //kgram
accuracy=0.01
v=300 //m/s
h=1.054*10**-34
//Calculation
p=m*(v*accuracy)/100.0
x=h/p
//Result
printf("\n position of the bullet %e m",x)
|