blob: e487b9020b417a787825d422329a8cd0c99ea9f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc
//
//
//
//Variable declaration
theta=6*10**-3 //Angular Width
D=1 //Distance of Screen
//Calculations
Totalangularwidth=2*theta
tlw=Totalangularwidth*D*10**2
//Result
printf("\n The Total Linear Width of central maxima is %0.3f cm",tlw)
|