summaryrefslogtreecommitdiff
path: root/446/CH12/EX12.2/12_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '446/CH12/EX12.2/12_2.sce')
-rwxr-xr-x446/CH12/EX12.2/12_2.sce10
1 files changed, 10 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