summaryrefslogtreecommitdiff
path: root/1553/CH25/EX25.32/25Ex32.sce
diff options
context:
space:
mode:
Diffstat (limited to '1553/CH25/EX25.32/25Ex32.sce')
-rw-r--r--1553/CH25/EX25.32/25Ex32.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1553/CH25/EX25.32/25Ex32.sce b/1553/CH25/EX25.32/25Ex32.sce
new file mode 100644
index 000000000..8e4881b5e
--- /dev/null
+++ b/1553/CH25/EX25.32/25Ex32.sce
@@ -0,0 +1,9 @@
+//Ch25_Ex32
+clc;
+clear;
+close;
+r=10.5;
+vol=(2/3)*(22/7)*r^3;
+curved=2*(22/7)*r^2;
+total=3*(22/7)*r^2;
+mprintf("Volume=%.1f cubic cm\n Curved surface area=%.0f square cm\n Total surface area=%.1f square cm",vol,curved,total);