blob: f043391e86d920732c6c5e7ed5b288d0020b5cc7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Variable declaration:
p = 0.15 //Partial pressure of SO3 (mm Hg)
P = 760.0 //Atmospheric pressure (mm Hg)
m = 10**6 //Particles in a million
//Calculation:
y = p/P //Mole fraction of SO3
ppm = y*m //Parts per million of SO3 (ppm)
//Result:
printf("The parts per million of SO3 in the exhaust is : %.0f ppm.",ppm)
|