summaryrefslogtreecommitdiff
path: root/1553/CH24/EX24.25/24Ex25.sce
diff options
context:
space:
mode:
Diffstat (limited to '1553/CH24/EX24.25/24Ex25.sce')
-rw-r--r--1553/CH24/EX24.25/24Ex25.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1553/CH24/EX24.25/24Ex25.sce b/1553/CH24/EX24.25/24Ex25.sce
new file mode 100644
index 000000000..f85a208e6
--- /dev/null
+++ b/1553/CH24/EX24.25/24Ex25.sce
@@ -0,0 +1,12 @@
+//chapter 24 Ex 25
+
+clc;
+clear;
+close;
+a=13.86;
+rate=4.4;
+area1=a*10000;
+radius=sqrt(area1/%pi);
+circumference=2*(%pi)*radius;
+cost=rate*circumference;
+mprintf("The area is Rs.%.0f",cost);