summaryrefslogtreecommitdiff
path: root/3669/CH2/EX2.5/5.sce
blob: 1f3de1c7679cb7dd69a3de6c3018506d75b4dd2a (plain)
1
2
3
4
5
6
7
8
9
10

//Variable declaration
a=3.5;     //lattice constant(angstrom)

//Calculation
A=a**2;
N=10**7*10**7/A;    //number of atoms per sq. mm

//Result
printf('number of atoms per sq. mm is %0.3f  *10**12   \n',(N/10**12))