blob: 0c334b737a1ab441edc0620d79b8e66271e383af (
plain)
1
2
3
4
5
6
7
8
9
10
|
Ex3 pg63
clear
//given
//find the piston speed
pa=9.
S=1600.
//average piston velocity =distance traveld/time to travel
//first divide by 1 min and u will get same result late divide by 12 because to express per minute
Ps=(pa*S)/(12.)
printf("\n \n piston speed %.2f ft per min",Ps)
|