diff options
Diffstat (limited to '1553/CH24/EX24.3/24Ex3.sce')
-rw-r--r-- | 1553/CH24/EX24.3/24Ex3.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1553/CH24/EX24.3/24Ex3.sce b/1553/CH24/EX24.3/24Ex3.sce new file mode 100644 index 000000000..5832ab164 --- /dev/null +++ b/1553/CH24/EX24.3/24Ex3.sce @@ -0,0 +1,12 @@ +//chapter 24 Ex 3
+
+clc;
+clear;
+close;
+
+l=13; b=9; w=75/100; //converting into meter
+rate=12.4;
+area=l*b;
+lCarpet=area/w;
+cost=lCarpet*rate;
+mprintf("The cost for carpeting is Rs.%.2f",cost);
|