diff options
Diffstat (limited to 'ee1301/wk2/lab2')
-rw-r--r-- | ee1301/wk2/lab2/greektax.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ee1301/wk2/lab2/greektax.cpp b/ee1301/wk2/lab2/greektax.cpp index 7da4aa6..f5d8ef3 100644 --- a/ee1301/wk2/lab2/greektax.cpp +++ b/ee1301/wk2/lab2/greektax.cpp @@ -3,7 +3,7 @@ using namespace std; int main () { int income; int tax=0; - cout << "Εισάγετε το εισόδημά σας: "; + cout << "Enter your income: "; cin >> income; if (income>10000) { int k10=income-10000; @@ -27,6 +27,6 @@ int main () { } } - cout << "Χρωστάς " << tax << " δραχμές." << endl; + cout << "You owe " << tax << " drachmas in tax." << endl; } |