blob: a8c3183f87ab748275b62c25c766c7d595a07bd2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
////Given
n1=3
n2 =1
E=13.6 //ev
//Calculation
E1=E/(3.0**2) //Binding energy of the atom in n=3 state
energy=E-E1 //Energy required for the atomic electron to jump from n=1 to n=3 state
//Result
printf("\n The electron beam must, therefore be accelerated through a potential difference of %0.2f V",energy)
|