blob: ccdff7a980033c1b1f4186a13102475776af7cb1 (
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-10000; //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-10000;
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;
}
|