diff options
-rw-r--r-- | ee1301/wk2/hw2_directory/strap012_HW2A.cpp | 14 | ||||
-rw-r--r-- | ee1301/wk2/hw2_directory/strap012_HW2B.cpp | 14 | ||||
-rw-r--r-- | ee1301/wk2/hw2_directory/strap012_HW2C.cpp | 14 | ||||
-rw-r--r-- | ee1301/wk3/lab3/mysteryBox.cpp | 12 |
4 files changed, 33 insertions, 21 deletions
diff --git a/ee1301/wk2/hw2_directory/strap012_HW2A.cpp b/ee1301/wk2/hw2_directory/strap012_HW2A.cpp index 34c4d2a..6401dbe 100644 --- a/ee1301/wk2/hw2_directory/strap012_HW2A.cpp +++ b/ee1301/wk2/hw2_directory/strap012_HW2A.cpp @@ -1,11 +1,11 @@ /* -Date: 20 Feb 2019 -Name: Matthew Strapp -Student ID number: 5449340 -Course number: EE1301 -Term: Spring 2019 -Lab/assignment number: Homework 2A -Short Program Description: Useless Counter +20 Feb 2019 +Matthew Strapp +5449340 +EE1301 +Spring 2019 +Homework 2A +Useless Counter */ #include <iostream> diff --git a/ee1301/wk2/hw2_directory/strap012_HW2B.cpp b/ee1301/wk2/hw2_directory/strap012_HW2B.cpp index e863ee5..113186b 100644 --- a/ee1301/wk2/hw2_directory/strap012_HW2B.cpp +++ b/ee1301/wk2/hw2_directory/strap012_HW2B.cpp @@ -1,11 +1,11 @@ /* -Date: 20 Feb 2019 -Name: Matthew Strapp -Student ID number: 5449340 -Course number: EE1301 -Term: Spring 2019 -Lab/assignment number: Homework 2B -Short Program Description: Time Travel Calculator +20 Feb 2019 +Matthew Strapp +5449340 +EE1301 +Spring 2019 +Homework 2B +Time Travel Calculator */ //The backwards part stumps me. diff --git a/ee1301/wk2/hw2_directory/strap012_HW2C.cpp b/ee1301/wk2/hw2_directory/strap012_HW2C.cpp index 55d4486..6e5c432 100644 --- a/ee1301/wk2/hw2_directory/strap012_HW2C.cpp +++ b/ee1301/wk2/hw2_directory/strap012_HW2C.cpp @@ -1,11 +1,11 @@ /* -Date: 20 Feb 2019 -Name: Matthew Strapp -Student ID number: 5449340 -Course number: EE1301 -Term: Spring 2019 -Lab/assignment number: Homework 2C -Short Program Description: One-armed Bandit +20 Feb 2019 +Matthew Strapp +5449340 +EE1301 +Spring 2019 +Homework 2C +One-armed Bandit */ #include <iostream> diff --git a/ee1301/wk3/lab3/mysteryBox.cpp b/ee1301/wk3/lab3/mysteryBox.cpp new file mode 100644 index 0000000..040197e --- /dev/null +++ b/ee1301/wk3/lab3/mysteryBox.cpp @@ -0,0 +1,12 @@ +#include <iostream> +using namespace std; +int main () { + int sum = 0; + for(int i=0; i<=100; i++) + { + if(i % 7 == 0) + sum++; + } +cout << sum; + +}
\ No newline at end of file |