blob: 14567a576900272900e6d4f58fa4717a76549ea9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clear
//Given
l1=33.7
l2=51.9
//Calculation
S1=l1/(100-l1)
s11=l2/(100-l2)
s=((s11*12)/S1)-12
R=s*S1
//Result
printf("\n Value of R is %0.2f ohm \nValue of S is %0.1f ohm",R,s)
|