summaryrefslogtreecommitdiff
path: root/3886/CH17/EX17.13/17_13.sce
blob: 6a9b657e5fea52e856628d198684d8942717d95d (plain)
1
2
3
4
5
6
7
8
9
//Car running
//(1) When three men jump off in succession
u=0
v1=10+((700*5)/(11000+3*700))
v2=v1+((700*5)/(11000+2*700))
v3=v2+((700*5)/(11000+700))  //m/sec
//(2) When three men jump together
v=10+((3*5*700)/(11000+3*700))  //m/sec
printf("\nWhen three men jump off in succession v=%.3f m/sec\nWhen three men jump together v=%.3f m/sec",v3,v)