From 5fa252352db0b05377ef5d54b92e3826f313393c Mon Sep 17 00:00:00 2001 From: Matthew Strapp Date: Wed, 13 Feb 2019 16:14:37 -0600 Subject: Put comment in correct place --- ee1301/wk2/lab2/greektax.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ee1301/wk2/lab2') diff --git a/ee1301/wk2/lab2/greektax.cpp b/ee1301/wk2/lab2/greektax.cpp index 3c0a91a..c229e35 100644 --- a/ee1301/wk2/lab2/greektax.cpp +++ b/ee1301/wk2/lab2/greektax.cpp @@ -5,8 +5,8 @@ int main () { int Tax=0; cout << "Enter your income: "; cin >> Income; - if (Income>10000) { - int k10=Income-30000; //Income under 10000 is not taxed + if (Income>10000) { //Income under 10000 is not taxed + int k10=Income-30000; if (k10<=0){ Tax+=((Income-10000)*.1); //Income between 10000 and 30000 is taxed at 10% } -- cgit v1.2.3