From eead839d0092bf6dc4936a40da1ec0c2158e494c Mon Sep 17 00:00:00 2001 From: Matthew Strapp Date: Wed, 13 Feb 2019 15:46:54 -0600 Subject: MORE COMMENTS --- ee1301/wk2/lab2/greektax.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ee1301') diff --git a/ee1301/wk2/lab2/greektax.cpp b/ee1301/wk2/lab2/greektax.cpp index c1507d1..ccdff7a 100644 --- a/ee1301/wk2/lab2/greektax.cpp +++ b/ee1301/wk2/lab2/greektax.cpp @@ -6,9 +6,9 @@ int main () { cout << "Enter your Income: "; cin >> Income; if (Income>10000) { - int k10=Income-10000; + int k10=Income-10000; //Income under 10000 is not taxed if (k10<=0){ - Tax+=((Income-10000)*.1); + Tax+=((Income-10000)*.1); //Income between 10000 and 30000 is taxed at 10% } else { Tax+=2000; @@ -16,13 +16,13 @@ int main () { if (Income>30000) { int k30=Income-10000; if (k30<=0){ - Tax+=((Income-30000)*.2); + Tax+=((Income-30000)*.2); //Income between 30000 and 70000 is taxed at 20% } else { Tax+=8000; } if (Income>70000) { - Tax+=((Income-70000)*.3); + Tax+=((Income-70000)*.3); //Income over 70000 is taxed at 30% } } } -- cgit v1.2.3