diff options
Diffstat (limited to '1553/CH11/EX11.27/11Ex27.sce')
-rw-r--r-- | 1553/CH11/EX11.27/11Ex27.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1553/CH11/EX11.27/11Ex27.sce b/1553/CH11/EX11.27/11Ex27.sce new file mode 100644 index 000000000..9ad055229 --- /dev/null +++ b/1553/CH11/EX11.27/11Ex27.sce @@ -0,0 +1,11 @@ +//Ex 27
+
+clc;
+clear;
+close;
+discount=1;
+cp_40=36;
+sp_40=40;
+sp_40=(100-discount)/100*sp_40;
+profitPercent=(sp_40-cp_40)/cp_40*100;
+printf("The profit is %d percent",profitPercent);
|