From e2ab34e60f544d9d6902fe3eb8e0947009234955 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Fri, 9 Sep 2022 15:22:01 -0600 Subject: added comments --- hw2/convertCurrency.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'hw2/convertCurrency.cpp') diff --git a/hw2/convertCurrency.cpp b/hw2/convertCurrency.cpp index 1d19136..8a31340 100644 --- a/hw2/convertCurrency.cpp +++ b/hw2/convertCurrency.cpp @@ -11,10 +11,10 @@ int main() { int gems = 0, gold = 0, bolts = 0; cout << "Enter the number of Bolts:\n"; cin >> bolts; - gold = bolts/23; - bolts = bolts % 23; + gold = bolts/23; // Gets the number of gold coins we can convert + bolts = bolts % 23; // Calculates the total umber of bolts you cannot use to convert gems = gold / 13; gold = gold % 13; - cout << gems << " Gem(s) " << gold << " GoldCoin(s) " << bolts << " Bolt(s)"; + cout << gems << " Gem(s) " << gold << " GoldCoin(s) " << bolts << " Bolt(s)"; // Outputs return 0; } \ No newline at end of file -- cgit v1.2.3