aboutsummaryrefslogtreecommitdiffstats
path: root/OLD/ee1301/wk3/lab3/mysteryBox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'OLD/ee1301/wk3/lab3/mysteryBox.cpp')
-rw-r--r--OLD/ee1301/wk3/lab3/mysteryBox.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/OLD/ee1301/wk3/lab3/mysteryBox.cpp b/OLD/ee1301/wk3/lab3/mysteryBox.cpp
deleted file mode 100644
index c1aefee..0000000
--- a/OLD/ee1301/wk3/lab3/mysteryBox.cpp
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <iostream>
-using namespace std;
-
-int main () {
- int sum = 0;
- for(int i=0; i<=100; i++)
- {
- if(i % 7 == 0)
- sum++;
- }
-cout << sum;
-}