aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk2/lab2/greektax.cpp
diff options
context:
space:
mode:
authorMatthew Strapp <msattr@gmail.com>2019-02-13 15:46:54 -0600
committerMatthew Strapp <msattr@gmail.com>2019-02-13 15:46:54 -0600
commiteead839d0092bf6dc4936a40da1ec0c2158e494c (patch)
treebbb33797c31f6be8117b9b791d8a74d9248e2e35 /ee1301/wk2/lab2/greektax.cpp
parentFix mistake (diff)
downloadhomework-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
Diffstat (limited to 'ee1301/wk2/lab2/greektax.cpp')
-rw-r--r--ee1301/wk2/lab2/greektax.cpp8
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%
}
}
}