blob: 102f536b167a595cf679db8fdfb72e36afd95fda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
//
//
//
//Variable declaration
l=0.02948*10**-3 //Distance moved
n=100 //number of fringes
//Calculations
lambdaa=(2*l)*10**10/n
//Result
printf("\n The Wavelength is %i Angstrom",lambdaa)
|