From 800aa640e6aeb61f9fdaae051f3e2d5f67756608 Mon Sep 17 00:00:00 2001 From: Matthew Strapp Date: Wed, 13 Feb 2019 15:29:33 -0600 Subject: The strings were all Greek to me. *rimshot* --- ee1301/wk2/lab2/greektax.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ee1301/wk2') 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; } -- cgit v1.2.3