aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk2/lab2
diff options
context:
space:
mode:
authorMatthew Strapp <msattr@gmail.com>2019-02-13 16:14:37 -0600
committerMatthew Strapp <msattr@gmail.com>2019-02-13 16:14:37 -0600
commit5fa252352db0b05377ef5d54b92e3826f313393c (patch)
tree45941fdad3245c33e331d9df7543be329b96203a /ee1301/wk2/lab2
parentRemove redundant comment (diff)
downloadhomework-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')
-rw-r--r--ee1301/wk2/lab2/greektax.cpp4
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%
}