summaryrefslogtreecommitdiff
path: root/446/CH12/EX12.2
diff options
context:
space:
mode:
Diffstat (limited to '446/CH12/EX12.2')
-rwxr-xr-x446/CH12/EX12.2/12_2.sce10
-rwxr-xr-x446/CH12/EX12.2/12_2.txt5
2 files changed, 15 insertions, 0 deletions
diff --git a/446/CH12/EX12.2/12_2.sce b/446/CH12/EX12.2/12_2.sce
new file mode 100755
index 000000000..c7f1e5966
--- /dev/null
+++ b/446/CH12/EX12.2/12_2.sce
@@ -0,0 +1,10 @@
+clear
+clc
+disp('Exa-12.2');
+r0=1.2; //standard value.
+A=12;
+r= r0*A^(1/3);printf('The value of mean radius for C is: %.2f fm\n',r);
+A=70; //given value
+r= r0*A^(1/3);printf('The value of mean radius for C is: %.2f fm\n',r);
+A=209;
+r= r0*A^(1/3);printf('The value of mean radius for C is: %.2f fm',r); \ No newline at end of file
diff --git a/446/CH12/EX12.2/12_2.txt b/446/CH12/EX12.2/12_2.txt
new file mode 100755
index 000000000..7ec9bca2e
--- /dev/null
+++ b/446/CH12/EX12.2/12_2.txt
@@ -0,0 +1,5 @@
+
+ Exa-12.2
+The value of mean radius for C is: 2.75 fm
+The value of mean radius for C is: 4.95 fm
+The value of mean radius for C is: 7.12 fm \ No newline at end of file