diff options
Diffstat (limited to '1553/CH3/EX3.11/3Ex11.sce')
-rw-r--r-- | 1553/CH3/EX3.11/3Ex11.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1553/CH3/EX3.11/3Ex11.sce b/1553/CH3/EX3.11/3Ex11.sce new file mode 100644 index 000000000..aea9e36a7 --- /dev/null +++ b/1553/CH3/EX3.11/3Ex11.sce @@ -0,0 +1,11 @@ +//chapter 3 Ex 11
+clc;
+clear;
+close;
+//let value to be found is x, y and z
+x=35/0.07;
+y=2.5/.0005;
+z=136.09/43.9;
+mprintf("(i)x=%.0f",x);
+mprintf("\n(ii)y=%.0f",y);
+mprintf("\n(iii)z=%.1f",z);
|