diff options
Diffstat (limited to '1553/CH25/EX25.6/25Ex6.sce')
-rw-r--r-- | 1553/CH25/EX25.6/25Ex6.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1553/CH25/EX25.6/25Ex6.sce b/1553/CH25/EX25.6/25Ex6.sce new file mode 100644 index 000000000..bf00c0da5 --- /dev/null +++ b/1553/CH25/EX25.6/25Ex6.sce @@ -0,0 +1,10 @@ +//Chapter 25 Ex 6
+clc;
+clear;
+close;
+ExtVol=50*40*23; //given
+IntVol=44*34*20; //given
+Metal_vol=ExtVol-IntVol;
+
+Weight=(Metal_vol*0.5)/1000;
+printf("Weight of box is %2.2f kg",Weight);
|