diff options
Diffstat (limited to '1553/CH3/EX3.8/3Ex8.sce')
-rw-r--r-- | 1553/CH3/EX3.8/3Ex8.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1553/CH3/EX3.8/3Ex8.sce b/1553/CH3/EX3.8/3Ex8.sce new file mode 100644 index 000000000..9ca5b7b25 --- /dev/null +++ b/1553/CH3/EX3.8/3Ex8.sce @@ -0,0 +1,11 @@ +//chapter 3 Ex 8
+clc;
+clear;
+close;
+//let value to be found is x, y and z
+x=2.61*1.3;
+y=2.1693*1.4;
+z=0.4*.04*.004*40;
+mprintf("(i) x=%.3f",x);
+mprintf("\n(ii) y=%.5f",y);
+mprintf("\n(iii)z=%.5f",z)
|