blob: fecb1b251abf51e95eaeaf9e900196d6ac225f8a (
plain)
1
2
3
4
5
6
7
8
|
//Example 11.6
//page 330
clc
per_L_200=((40-18)/(55-18))*100
Per_L_210=((40-17)/(50-17))*100
disp(per_L_200,"L200 in percentage")
disp(Per_L_210,"L210 in percentage")
//answer variation is due to round off
|