blob: 25ef43f49cb484fa12a68ad3686d23debd179786 (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc
//initialisation of variables
p=100//ft
q=27000//acre-ft
p1=10//ft
s=8250//acre-ft
//CALCULATIONS
R=p*s/q//percent
//RESULTS
printf('the ratio of peak inflow from fuller values=% f percent',R)
|