diff options
Diffstat (limited to '3769/CH25/EX25.1/Ex25_1.sce')
-rw-r--r-- | 3769/CH25/EX25.1/Ex25_1.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3769/CH25/EX25.1/Ex25_1.sce b/3769/CH25/EX25.1/Ex25_1.sce new file mode 100644 index 000000000..83cf6c610 --- /dev/null +++ b/3769/CH25/EX25.1/Ex25_1.sce @@ -0,0 +1,13 @@ +clear +//Given +R0=1.2*10**-15 //m +A=208 +A1=16 + +//calculation +R=R0*A**0.33 +R1=R0*A1**0.33 + +//Result +printf("\n Nuclear radius of lead is %0.1f fm",R*10**15) +printf("\n Nuclear radius of oxygen is %0.0f fm",R1*10**15) |