blob: 254485c9a657c5f6f57f3ba82c6f704c57a8a196 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Variable declaration
h=6.63*10**-34; //planck's constant
c=3*10**8; //velocity of light(m/s)
lamda=1.55*10**-6; //wavelength(m)
e=1.6*10**-19;
//Calculation
Eg=h*c/(lamda*e); //energy gap(eV)
//Result
printf('energy gap is %0.3f eV \n',(Eg))
|