diff options
Diffstat (limited to '1553/CH24/EX24.16/24Ex16.sce')
-rw-r--r-- | 1553/CH24/EX24.16/24Ex16.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1553/CH24/EX24.16/24Ex16.sce b/1553/CH24/EX24.16/24Ex16.sce new file mode 100644 index 000000000..a44f483c1 --- /dev/null +++ b/1553/CH24/EX24.16/24Ex16.sce @@ -0,0 +1,9 @@ +//Chapter 24 Ex 16
+
+clc;
+clear;
+close;
+base=12; hypo=13;
+h=sqrt((hypo)^2-(base)^2);
+area=(1/2)*base*h;
+mprintf("The area of a right angled triangle is %d sq.cm.",area);
\ No newline at end of file |