blob: 8e2636de60095f090b80ab04b34cf511be1dd7fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clear
//Given
l=0.82*10**-10 //m
h=6.6*10**-34
m=9.1*10**-31
c=3*10**8 //m/s
//Calculation
//
le=sqrt((h*l)/(2*c*m))
//Result
printf("\n Wavelength associated with the photoelectrons is %0.4f A",le*10**10)
|