summaryrefslogtreecommitdiff
path: root/1553/CH10/EX10.12/10Ex12.sce
diff options
context:
space:
mode:
Diffstat (limited to '1553/CH10/EX10.12/10Ex12.sce')
-rw-r--r--1553/CH10/EX10.12/10Ex12.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1553/CH10/EX10.12/10Ex12.sce b/1553/CH10/EX10.12/10Ex12.sce
new file mode 100644
index 000000000..42475f00c
--- /dev/null
+++ b/1553/CH10/EX10.12/10Ex12.sce
@@ -0,0 +1,10 @@
+//chapter 10 Ex 12
+
+clc;
+clear;
+close;
+num=81.472;
+nearNum=81.5; //nearest floating number
+Error=nearNum-num;
+percent=(Error/num)*100;
+printf("The percentage error is %0.3f percent",percent);