blob: e27428c3c889fad5b18a1748f8dacad8d8654060 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double inAngle, firstRI, secondRI;
cout << "Input incident angle: ";
cin >> inAngle;
cout << "Input index of refraction of first medium: ";
cin >> firstRI;
cout << "Input index of refraction of second medium: ";
cin >> secondRI;
inAngle = inAngle *M_PI / 180.0; // convert to radians
double outAngle = 180/M_PI * asin(firstRI/secondRI * sin(inAngle)); //snell's law
cout << "Refracted angle: " << outAngle <<endl;
return 0;
}
|