blob: 9e2dde80b39c46e1d752b6246fa265903e9b49e3 (
plain)
1
2
3
4
5
6
7
8
|
//Example 1_15 page no:17
clc
//apply kirchoff law to the circuit
It=50;//total current in milli ampere
I1=30;
I2=10;
I3=It-I1-I2;
disp(I3,"current flowing in R3 (in milli ampere)")
|