summaryrefslogtreecommitdiff
path: root/3769/CH6/EX6.7/Ex6_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3769/CH6/EX6.7/Ex6_7.sce')
-rw-r--r--3769/CH6/EX6.7/Ex6_7.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3769/CH6/EX6.7/Ex6_7.sce b/3769/CH6/EX6.7/Ex6_7.sce
new file mode 100644
index 000000000..b41db82f6
--- /dev/null
+++ b/3769/CH6/EX6.7/Ex6_7.sce
@@ -0,0 +1,13 @@
+clear
+//Given
+a=15
+b=4
+c=12.0
+d=10
+
+//Calculation
+R=(a*b)/c
+X=(d*R)/(d-R)
+
+//Result
+printf("\n The value of resistance is %0.3f ohm", X)