blob: 723f794202609dce6fa5997fb84be07b51a296aa (
plain)
1
2
3
4
5
6
7
8
9
|
clc
//initialisation of variables
V= 5.16*10^14 //cm per sec
M2= 28 //gms
M1= 2.02 //gms
//CALCULATIONS
c1= V*sqrt(M2/M1)
//RESULTS
printf (' Velocity of hydrogen molecule = %.1e cm per sec',c1)
|