blob: e2a556d483bf2633d288018659ac30e253fc6521 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc
//
//
//
//Variable declaration
y=5*10**-3 //First Minima
D=2 //Distance of screen
e=0.2*10**-3 //Slit width
//Calculations
lambdaa=((e*y)/D)*10**10
//Result
printf("\n The Wavelength is %d Angstrom",lambdaa)
|