aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk2/hw2_directory/strap012_HW2A.cpp
diff options
context:
space:
mode:
authorRossTheRoss <msattr@gmail.com>2020-02-09 08:46:52 -0600
committerRossTheRoss <msattr@gmail.com>2020-02-09 08:46:52 -0600
commitbd1d350c376b45e334697851e29b2f79fee0c956 (patch)
treeeb242032a64442caef7a35434400eb0818911e9a /ee1301/wk2/hw2_directory/strap012_HW2A.cpp
parentDo micro prelab (diff)
parentRename file (diff)
downloadhomework-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/wk2/hw2_directory/strap012_HW2A.cpp')
-rw-r--r--ee1301/wk2/hw2_directory/strap012_HW2A.cpp49
1 files changed, 0 insertions, 49 deletions
diff --git a/ee1301/wk2/hw2_directory/strap012_HW2A.cpp b/ee1301/wk2/hw2_directory/strap012_HW2A.cpp
deleted file mode 100644
index 2877801..0000000
--- a/ee1301/wk2/hw2_directory/strap012_HW2A.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
-20 Feb 2019
-Matthew Strapp
-5449340
-EE1301
-Spring 2019
-Homework 2A
-Useless Counter
-*/
-
-#include <iostream>
-using namespace std;
-int main () {
- int countOG, i, j;
-
-do {
-
- do {
- cout << "Enter an integer from -50 to 50: ";
- cin >> countOG;
- } while (countOG > 50 || countOG < -50);
-
- int count=countOG; //Store original integer for comparison to break loop
-
- if (countOG < 0){
- count*=-1;
- for (i=count; i>0; i--) {
- for (j=count; j>0; j--) {
- cout << count;
- }
- count--;
- cout << endl;
- }
- }
-
- if (countOG > 0) {
- for (count=1; count<=countOG; count++) {
- for (i=0; i<count; i++) {
- cout << count;
- }
- cout << endl;
- }
- }
-
-} while (countOG != 0);
-
- cout << "Goodbye." << endl;
- return 0;
-} \ No newline at end of file