From 175721a63b426355274fa9e8063f762020ab8362 Mon Sep 17 00:00:00 2001 From: RossTheRoss Date: Thu, 30 Jan 2020 16:55:04 -0600 Subject: R E A R R A N G E --- OLD/ee1301/wk3/lab3/mysteryBox.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 OLD/ee1301/wk3/lab3/mysteryBox.cpp (limited to 'OLD/ee1301/wk3/lab3/mysteryBox.cpp') diff --git a/OLD/ee1301/wk3/lab3/mysteryBox.cpp b/OLD/ee1301/wk3/lab3/mysteryBox.cpp new file mode 100644 index 0000000..c1aefee --- /dev/null +++ b/OLD/ee1301/wk3/lab3/mysteryBox.cpp @@ -0,0 +1,12 @@ +#include +using namespace std; + +int main () { + int sum = 0; + for(int i=0; i<=100; i++) + { + if(i % 7 == 0) + sum++; + } +cout << sum; +} -- cgit v1.2.3