summaryrefslogtreecommitdiff
path: root/1553/CH3/EX3.3/3Ex3.sce
diff options
context:
space:
mode:
Diffstat (limited to '1553/CH3/EX3.3/3Ex3.sce')
-rw-r--r--1553/CH3/EX3.3/3Ex3.sce8
1 files changed, 8 insertions, 0 deletions
diff --git a/1553/CH3/EX3.3/3Ex3.sce b/1553/CH3/EX3.3/3Ex3.sce
new file mode 100644
index 000000000..6b6cf19e7
--- /dev/null
+++ b/1553/CH3/EX3.3/3Ex3.sce
@@ -0,0 +1,8 @@
+//chapter 3 Ex3
+clc;
+clear;
+close;
+n1=3/5; n2=4/7; n3=8/9; n4=9/11;
+V=[n1 n2 n3 n4];
+V=gsort(V,'lc','i');
+mprintf("%.2f > %.2f> %.2f > %.2f",V(4),V(3),V(2),V(1));