blob: 7e1bf52ca6120694959c67ea997274900193dea8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
clc
//
//
//
//Variable declaration
n1=62 //fringes
lambdaa1=5893*10**-10 //Wavelength 1
lambdaa2=5461*10**-10 //Wavelength 2
//Calculations
n2=(n1*lambdaa1)/lambdaa2
//Result
printf("\n The number of fringes would be %i ",round(n2))
|