212k views
2 votes
Convert totalOunces to quarts, cups, and ounces, finding the maximum number of quarts, then cups, then ounces.

Ex: If the input is 206, then the output is:

Quarts: 6
Cups: 1
Ounces: 6
Note: A quart is 32 ounces. A cup is 8 ounces.
how do i code this in c++?

User Crivateos
by
7.4k points

1 Answer

6 votes

Answer:#include <iostream>

using namespace std;

int main() {

int totalOunces;

int quarts, cups, ounces;

// get user input for total number of ounces

cout << "Enter the total number of ounces: ";

cin >> totalOunces;

// calculate quarts, cups, and ounces

quarts = totalOunces / 32;

cups = (totalOunces % 32) / 8;

ounces = (totalOunces % 32) % 8;

// output the result

cout << "Quarts: " << quarts << endl;

cout << "Cups: " << cups << endl;

cout << "Ounces: " << ounces << endl;

return 0;

}

Explanation:

The program first prompts the user to enter the total number of ounces. Then, it calculates the number of quarts, cups, and ounces by using integer division and the modulus operator. Finally, it outputs the result in the format "Quarts: x, Cups: y, Ounces: z".

User Nayden Van
by
7.3k points