diff options
Diffstat (limited to 'ee1301/wk3/lab3/mysteryBox.cpp')
-rw-r--r-- | ee1301/wk3/lab3/mysteryBox.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/ee1301/wk3/lab3/mysteryBox.cpp b/ee1301/wk3/lab3/mysteryBox.cpp deleted file mode 100644 index c1aefee..0000000 --- a/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;
-}
|