diff options
Diffstat (limited to '1553/CH11/EX11.26')
-rw-r--r-- | 1553/CH11/EX11.26/11Ex26.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1553/CH11/EX11.26/11Ex26.sce b/1553/CH11/EX11.26/11Ex26.sce new file mode 100644 index 000000000..a74567ac4 --- /dev/null +++ b/1553/CH11/EX11.26/11Ex26.sce @@ -0,0 +1,12 @@ +//Ex 26
+
+clc;
+clear;
+close;
+cp=100;
+discount=25;
+mPercent=50;
+mp=cp+mPercent;
+sp=((100-discount)*mp)/100;
+gainPercent=(sp-100);
+printf("The gain is %3.2f percent",gainPercent);
|