blob: fba3918f87d9e9678c478e7bc789c0264cd407f2 (
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) { //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%
}
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;
}
|