diff options
Diffstat (limited to '1553/CH11/EX11.3')
-rw-r--r-- | 1553/CH11/EX11.3/11Ex3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1553/CH11/EX11.3/11Ex3.sce b/1553/CH11/EX11.3/11Ex3.sce new file mode 100644 index 000000000..f27289275 --- /dev/null +++ b/1553/CH11/EX11.3/11Ex3.sce @@ -0,0 +1,12 @@ +//Ex 3
+
+clc;
+clear;
+close;
+//(i)
+sp1=(120/100)*56.25;
+printf("(i)The SP is Rs. %3.2f",sp1);
+
+//(ii)
+sp2=(85/100)*80.4;
+printf("\n(ii) The SP is Rs. %3.2f",sp2);
|