summaryrefslogtreecommitdiff
path: root/1553/CH4/EX4.17/4Ex17.sce
diff options
context:
space:
mode:
Diffstat (limited to '1553/CH4/EX4.17/4Ex17.sce')
-rw-r--r--1553/CH4/EX4.17/4Ex17.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1553/CH4/EX4.17/4Ex17.sce b/1553/CH4/EX4.17/4Ex17.sce
new file mode 100644
index 000000000..1936ac642
--- /dev/null
+++ b/1553/CH4/EX4.17/4Ex17.sce
@@ -0,0 +1,10 @@
+//chapter 4 Ex 17
+
+clc;
+clear;
+close;
+a=0;
+for n=2:9
+ a= a+(1/(n*(n+1)));
+end
+mprintf("The value is %0.2f",a);