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".