diff options
author | Matthew Strapp <msattr@gmail.com> | 2019-02-13 15:46:54 -0600 |
---|---|---|
committer | Matthew Strapp <msattr@gmail.com> | 2019-02-13 15:46:54 -0600 |
commit | eead839d0092bf6dc4936a40da1ec0c2158e494c (patch) | |
tree | bbb33797c31f6be8117b9b791d8a74d9248e2e35 | |
parent | Fix mistake (diff) | |
download | homework-eead839d0092bf6dc4936a40da1ec0c2158e494c.tar homework-eead839d0092bf6dc4936a40da1ec0c2158e494c.tar.gz homework-eead839d0092bf6dc4936a40da1ec0c2158e494c.tar.bz2 homework-eead839d0092bf6dc4936a40da1ec0c2158e494c.tar.lz homework-eead839d0092bf6dc4936a40da1ec0c2158e494c.tar.xz homework-eead839d0092bf6dc4936a40da1ec0c2158e494c.tar.zst homework-eead839d0092bf6dc4936a40da1ec0c2158e494c.zip |
MORE COMMENTS
-rw-r--r-- | ee1301/wk2/lab2/greektax.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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% } } } |