aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk2
diff options
context:
space:
mode:
authorMatthew Strapp <msattr@gmail.com>2019-02-13 15:29:33 -0600
committerMatthew Strapp <msattr@gmail.com>2019-02-13 15:29:33 -0600
commit800aa640e6aeb61f9fdaae051f3e2d5f67756608 (patch)
treeccc5edb18e99e3616999db65445c9d7d351b65a4 /ee1301/wk2
parentFinish lab (diff)
downloadhomework-800aa640e6aeb61f9fdaae051f3e2d5f67756608.tar
homework-800aa640e6aeb61f9fdaae051f3e2d5f67756608.tar.gz
homework-800aa640e6aeb61f9fdaae051f3e2d5f67756608.tar.bz2
homework-800aa640e6aeb61f9fdaae051f3e2d5f67756608.tar.lz
homework-800aa640e6aeb61f9fdaae051f3e2d5f67756608.tar.xz
homework-800aa640e6aeb61f9fdaae051f3e2d5f67756608.tar.zst
homework-800aa640e6aeb61f9fdaae051f3e2d5f67756608.zip
The strings were all Greek to me.
*rimshot*
Diffstat (limited to 'ee1301/wk2')
-rw-r--r--ee1301/wk2/lab2/greektax.cpp4
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;
}