blob: 910d827bb01e229e5dc22045be0853e945733129 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clear
//
//
//
//Variable declaration
N=15000/2.54*10**2 //number of lines/cm
lamda=600*10**-9 //wavelength(m)
//Calculation
m=1/(N*lamda) //highest order that can be seen
//Result
printf("\n highest order that can be seen is %0.3f ",m)
|