summaryrefslogtreecommitdiff
path: root/3769/CH6/EX6.9/Ex6_9.sce
blob: afc5669828d32aa6db43417fa7a0f557be29fd72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
clear
//Given
a=10
b=7.0
c=5
d=4
e=8.0

//Calculation
I1=(a+a)/(b+1)
I3=(c+(4*I1))/e
I2=(-a+(6*I3)+I1)/2.0

//Result
printf("\n Current I1= %0.3f A \nI2= %0.3f A \nI3= %0.3f A",I1,I2,I3)