diff options
| author | RossTheRoss <msattr@gmail.com> | 2020-02-09 08:46:52 -0600 |
|---|---|---|
| committer | RossTheRoss <msattr@gmail.com> | 2020-02-09 08:46:52 -0600 |
| commit | bd1d350c376b45e334697851e29b2f79fee0c956 (patch) | |
| tree | eb242032a64442caef7a35434400eb0818911e9a /ee1301/wk0/hw0/strap012_HW0.cpp | |
| parent | Do micro prelab (diff) | |
| parent | Rename file (diff) | |
| download | homework-bd1d350c376b45e334697851e29b2f79fee0c956.tar homework-bd1d350c376b45e334697851e29b2f79fee0c956.tar.gz homework-bd1d350c376b45e334697851e29b2f79fee0c956.tar.bz2 homework-bd1d350c376b45e334697851e29b2f79fee0c956.tar.lz homework-bd1d350c376b45e334697851e29b2f79fee0c956.tar.xz homework-bd1d350c376b45e334697851e29b2f79fee0c956.tar.zst homework-bd1d350c376b45e334697851e29b2f79fee0c956.zip | |
Merge branch 'master' of github.com:RosstheRoss/TestingFun
Diffstat (limited to 'ee1301/wk0/hw0/strap012_HW0.cpp')
| -rw-r--r-- | ee1301/wk0/hw0/strap012_HW0.cpp | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/ee1301/wk0/hw0/strap012_HW0.cpp b/ee1301/wk0/hw0/strap012_HW0.cpp deleted file mode 100644 index b8ca0b9..0000000 --- a/ee1301/wk0/hw0/strap012_HW0.cpp +++ /dev/null @@ -1,27 +0,0 @@ -// EE 1301 -// HW 0 -// Matthew Strapp -// strap012 -// 0.3490658503988659 - -#include <iostream> -#include <cmath> - -using namespace std; - -int main() -{ - double inAngle, firstRI, secondRI; - cout << "Input incident angle in degrees: "; - 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 in degrees: " << outAngle <<endl; - - return 0; -} |
