diff options
Diffstat (limited to '1553/CH11/EX11.15/11Ex15.sce')
-rw-r--r-- | 1553/CH11/EX11.15/11Ex15.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1553/CH11/EX11.15/11Ex15.sce b/1553/CH11/EX11.15/11Ex15.sce new file mode 100644 index 000000000..8931fbed6 --- /dev/null +++ b/1553/CH11/EX11.15/11Ex15.sce @@ -0,0 +1,9 @@ +//Ex 15
+
+clc;
+clear;
+close;
+r=125;w=115;m=110;
+retail_price=1265;
+cost=retail_price/(r/100*m/100*w/100);
+printf("The production cost of table is Rs. %d",cost);
|