blob: a0ad56714158515009d6378a281f708fd5f2a110 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//Variable declaration
y=1/100; //percentage of probability
x=0.5*1.6*10**-19; //energy(J)
k=1.38*10**-23; //boltzmann constant
//Calculation
xbykT=log((1/y)-1);
T=x/(k*xbykT); //temperature(K)
//Result
printf('temperature is %0.3f K ',int(T))
printf('answer varies due to ing off errors')
|