blob: 94b5c1b65822f337b2dc915b26c1b7d3514fe753 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
//
//
//
//Variable declaration
l=0.0025 //Distance moved
t=0.005 //thickness of mica sheet
//Calculations
mu=((l/t)+1)
//Result
printf("\n The Refractive Index is %0.3f ",mu)
|