Question: Complete the code to output 1 cup = 8 fluid ounces. On the next line, output the value of volumeOunces to three digits after the
Complete the code to output "1 cup = 8 fluid ounces". On the next line, output the value of volumeOunces to three digits after the decimal point, followed by " fluid ounces = ", and then the value of volumeCups to five digits after the decimal point, and lastly " cups". End with a newline.
Ex: If the input is 2.000, then the output is:
1 cup = 8 fluid ounces 2.000 fluid ounces = 0.25000 cups
#include
#include
#include
using namespace std;
int main() {
double volumeOunces;
double volumeCups;
cin >> volumeOunces;
volumeCups = volumeOunces / 8.0;
**PUT YOUR CODE HERE!**
return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
