summaryrefslogtreecommitdiff
path: root/3840/CH2/EX2.5/Ex2_5.sce
blob: f34831f622c3d763c366c08de16915996ea6e593 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
clear
//
//
//

//Variable declaration
a=3.5        //lattice constant(angstrom)
n=10**7      //1mm in angstrom

//Calculation
N=n**2/a**2  //number of atoms per sq mm
        
//Result
printf("\n number of atoms per sq mm is %0.2f  *10**12",N/10**12)