diff options
Diffstat (limited to '1553/CH24/EX24.19')
-rw-r--r-- | 1553/CH24/EX24.19/24Ex19.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1553/CH24/EX24.19/24Ex19.sce b/1553/CH24/EX24.19/24Ex19.sce new file mode 100644 index 000000000..5d2d20a14 --- /dev/null +++ b/1553/CH24/EX24.19/24Ex19.sce @@ -0,0 +1,10 @@ +//chapter 24 Ex 19
+
+clc;
+clear;
+close;
+l=3*sqrt(3);
+area=((sqrt(3))/4)*l^2;
+height=area/((1/2)*l);
+mprintf("The height of %.1f cm",height);
+
|