blob: 3503441f3b173e71b846d4a7f9ecd072ea9904f3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
////Variable Declaration
n1 = 2 //Two spin states for 1st electron in orbit 1
n2 = 2 //Two spin states for 2nd electron in orbit 2
//Calculation
M = n1*n1
//Results
printf("\n Possible spin states for excited state are %2d",M)
|