diff options
Diffstat (limited to '1553/CH9/EX9.2/9Ex2.sce')
-rw-r--r-- | 1553/CH9/EX9.2/9Ex2.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1553/CH9/EX9.2/9Ex2.sce b/1553/CH9/EX9.2/9Ex2.sce new file mode 100644 index 000000000..1993dcbe9 --- /dev/null +++ b/1553/CH9/EX9.2/9Ex2.sce @@ -0,0 +1,13 @@ +//Chapter 9 Ex 2
+
+clc;
+clear;
+close;
+
+//(i)
+x1=(0.00032)^(3/5);
+
+//(ii)
+x2=((256)^(0.16))*((16)^(0.18));
+
+mprintf("The value of expression 1 and expression 2 are %.3f and %d",x1,x2);
|