aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk2/lab2/greektax.cpp
blob: 3c0a91a447a7392c2612cda3418b3a5d795ecb06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <iostream>
using namespace std;
int main () {
  int Income;
  int Tax=0;
  cout << "Enter your income: ";
  cin >> Income;
  if (Income>10000) {
    int k10=Income-30000; //Income under 10000 is not taxed
    if (k10<=0){
    Tax+=((Income-10000)*.1); //Income between 10000 and 30000 is taxed at 10%
  }
    else {
      Tax+=2000;
    }
    if (Income>30000) {
      int k30=Income-70000;
      if (k30<=0){
      Tax+=((Income-30000)*.2); //Income between 30000 and 70000 is taxed at 20%
    }
      else {
        Tax+=8000;
      }
      if (Income>70000) {
        Tax+=((Income-70000)*.3); //Income over 70000 is taxed at 30%
      }
    }
  }
  cout << "You owe " << Tax << " drachmas in tax." << endl;

}