blob: 8a31340ada944a89f4d1edb8b032609a264f9e72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// CSCI 1300 Fall 2022
// Author: Navan Chauhan
// Recitation: 307 – TA name
// Homework 2 - Problem 5
#include<iostream>
using namespace std;
int main() {
int gems = 0, gold = 0, bolts = 0;
cout << "Enter the number of Bolts:\n";
cin >> bolts;
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)"; // Outputs
return 0;
}
|