blob: 24406e1c44dddb22f889e418b607f0fc00991ab7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
clear
//Given
h=6.62*10**-34
c=3*10**8
l0=24.8*10**-8
a=1.2
e=1.6*10**-19
//Calculation
w0=(h*c)/l0
w01=(w0/1.6*10**-19)*10**38
h1=w01+a
C=h1*e
l=(h*c)/C
//Result
printf("\n Wavelength of incident light is %0.0f A",l*10**10)
|