diff options
author | Matthew Strapp <msattr@gmail.com> | 2019-02-13 16:14:37 -0600 |
---|---|---|
committer | Matthew Strapp <msattr@gmail.com> | 2019-02-13 16:14:37 -0600 |
commit | 5fa252352db0b05377ef5d54b92e3826f313393c (patch) | |
tree | 45941fdad3245c33e331d9df7543be329b96203a /ee1301/wk2/lab2/greektax.cpp | |
parent | Remove redundant comment (diff) | |
download | homework-5fa252352db0b05377ef5d54b92e3826f313393c.tar homework-5fa252352db0b05377ef5d54b92e3826f313393c.tar.gz homework-5fa252352db0b05377ef5d54b92e3826f313393c.tar.bz2 homework-5fa252352db0b05377ef5d54b92e3826f313393c.tar.lz homework-5fa252352db0b05377ef5d54b92e3826f313393c.tar.xz homework-5fa252352db0b05377ef5d54b92e3826f313393c.tar.zst homework-5fa252352db0b05377ef5d54b92e3826f313393c.zip |
Put comment in correct place
Diffstat (limited to 'ee1301/wk2/lab2/greektax.cpp')
-rw-r--r-- | ee1301/wk2/lab2/greektax.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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% } |