blob: 963f841eca674a10985003fbc303c8a3a06ca72e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
//
//
//
//Variable declaration
lambdaa=5000*10**-8 //Wavelength
invde=(2620/2.54) //Diffraction element inverse
//Calculations
n=(1/(lambdaa*invde))
//Result
printf("\n The orders visible would be %i ",n)
|