blob: 5ecdd7bc99528f4941ff0100754c116d0d806336 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//To Calculate the radius of Nucleus of Germanium atom
//Example 46.1
clear;
clc;
A=70;//Mass Number of Germanium Atom
R0=1.1;//Constant R0 in fetometers
R=R0*A^(1/3);//Radius of Nucleus of Germanium atom
printf("Radius of Nucleus of Germanium atom = %.2f fm",R);
|