diff options
Diffstat (limited to '3648/CH1/EX1.4')
-rw-r--r-- | 3648/CH1/EX1.4/Ex1_4.sce | 10 | ||||
-rw-r--r-- | 3648/CH1/EX1.4/Ex1_4.txt | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/3648/CH1/EX1.4/Ex1_4.sce b/3648/CH1/EX1.4/Ex1_4.sce new file mode 100644 index 000000000..ca3207334 --- /dev/null +++ b/3648/CH1/EX1.4/Ex1_4.sce @@ -0,0 +1,10 @@ +//Example 1_4
+clc();
+clear;
+//To calculate the Volume
+r=3*10^-5 //units in meters
+L=0.20 //units in meters
+V=%pi*r^2*L //Units in meter^3
+printf("Volume V=")
+disp(V)
+printf("Meter^3")
diff --git a/3648/CH1/EX1.4/Ex1_4.txt b/3648/CH1/EX1.4/Ex1_4.txt new file mode 100644 index 000000000..03197d52b --- /dev/null +++ b/3648/CH1/EX1.4/Ex1_4.txt @@ -0,0 +1 @@ +Volume V= 5.655D-10 Meter^3
\ No newline at end of file |