aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk2/lab2
diff options
context:
space:
mode:
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%
}