aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk3
diff options
context:
space:
mode:
Diffstat (limited to 'ee1301/wk3')
-rw-r--r--ee1301/wk3/lab3/mysteryBox.cpp12
1 files changed, 12 insertions, 0 deletions
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