blob: f30892eea083bc4e748328e4c6b1b98da8ebae32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clear
//Given
w=0.021
u=1.53
w1=0.045
u1=1.65
A1=4.20 //Degree
//Calculation
A=-(w1*A1*(u1-1))/(w*(u-1))
//Result
printf("\n Angle of the prism is %0.2f Degree",A)
|