blob: 55433e6c486ece17f3f4966111a0fef6c782a071 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clear;
clc;
printf("\nEx2.7\n");
//page no.-57
//given
h=6.6*10^-34;...............//planck constant in Joule-sec
m=9.1*10^-31;..................//mass of e in kg
c=3*10^8;....................//speed in m/sec
lambda=h/(m*c)................//wavelength in angstrom
printf("\nwavelength of quantum of energy is 0.0244 angstrom\n");
|