blob: 8ddc1c0e51b5f0e738733ac05f0e6dcc8708dfe8 (
plain)
1
2
3
4
5
6
7
|
//ques-25.9
//Calculating number of molecules in a mole of gas
clc
KE=5.621*10^-21;//KE/molecule (in J)
T=273+0;//temperature (in K)
Na=(3*8.314*T)/(2*KE);
printf("The number of molecules in a mole of gas are %.2f*10^23.",Na*10^-23);
|