blob: f3f1c6182c1cd7f89ae410452540d0c07bad24d3 (
plain)
1
2
3
4
5
6
7
8
9
|
clc
//Variable declaration
a=mulf('2','R')
//Results
printf('i.Number of atoms per unit area of (100)plane= 1/(%d*R**2) ",2**2)
printf('\nii.Number of atoms per unit area of (110)plane=%f*R**2",2**2/(sqrt(2)))
printf('\niii.Number of atoms per unit area of (111)plane=%f*R**2",2**2/(sqrt(3)))
|