summaryrefslogtreecommitdiff
path: root/3648/CH27/EX27.5/Ex27_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH27/EX27.5/Ex27_5.sce')
-rw-r--r--3648/CH27/EX27.5/Ex27_5.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3648/CH27/EX27.5/Ex27_5.sce b/3648/CH27/EX27.5/Ex27_5.sce
new file mode 100644
index 000000000..7ec5de14a
--- /dev/null
+++ b/3648/CH27/EX27.5/Ex27_5.sce
@@ -0,0 +1,12 @@
+//Example 27_5
+clc();
+clear;
+//To find how much of the orignal I will still present
+d1=20 //Units in mg
+d2=d1/2 //Units in mg
+d3=d2/2 //Units in mg
+d4=d3/2 //Units in mg
+d5=d4/2 //Units in mg
+d6=d5/2 //Units in mg
+d7=d6/2 //Units in mg
+printf("After 48 days only %.3f mg will remain",d7)