Problem Statement: Part A Write a program that prompts the user for the followin
ID: 3669352 • Letter: P
Question
Problem Statement: Part A
Write a program that prompts the user for the following pieces of information concerning the raw materials the user has to make lemonade:
1) The number of lemons they have 2) The number of bags of sugar they have
Given this information, along with the three following constants you should define in your program,
static final int LEMONS_PER_PITCHER = 12;
static final int SPOONS_PER_BAG = 1000;
static final int SPOONS_PER_PITCHER = 50;
you should determine the maximum number of pitchers of lemonade that the user can make. Your answer should be a non-negative integer. Thus, even if there are leftover ingredients to create .3 of a pitcher, you should not count this at all. You may assume that the water is free and the lemonade only consists of water, lemons and sugar. (Note: Determine the meaning of the constants by looking at the sample data. Ask a TA if necessary.)
Input Specification
1. The number of lemons will be a non-negative integer.
2. The number of bags of sugar will be a non-negative integer.
Output Specification
Output the number of pitchers of lemonade the user can make. Your output should follow the format below, where X represents the number of pitchers:
You can make a maximum of X pitchers.
Output Samples
Here are three sample outputs of running the program. Note that this set of tests is NOT a comprensive test. You should test your program with different data than is shown here based on the specifications given. The user input is given in italics while the program output is in bold.
Output Sample #1
Enter the number of lemons you have
36
Enter the number of bags of sugar you have.
1
You can make a maximum of 3 pitchers.
Output Sample #2
Enter the number of lemons you have
400
Enter the number of bags of sugar you have.
1
You can make a maximum of 20 pitchers.
Output Sample #3
Enter the number of lemons you have
84
Enter the number of bags of sugar you have.
0
You can make a maximum of 0 pitchers.
(can someone help with this code i use virtual studios and am still trying to figure out how to write c code and c++)
Explanation / Answer
This below C++ program will work as per specified in the given problem statement.
1. Read the lemons from console and tested it must be positive
2. Read the bags from console and tested it must be positive
3. Calcuated the lemonds as per given condistions..
See the C++ code in below:
#include<iostream>
using namespace std;
int main()
{
const int LEMONS_PER_PITCHER = 12;
const int SPOONS_PER_BAG = 1000;
const int SPOONS_PER_PITCHER = 50;
int lemons, bags;
cout<<"Enter the number of lemons you have"<<endl;
cin>>lemons;
if(lemons<0)
{
cout<<"Lemons Must be Greater than Equal to Zero"<<endl;
cin>>lemons;
}
cout<<"Enter e number of bags of sugar you have."<<endl;
cin>>bags;
if(bags<0)
{
cout<<"bags Must be Greater than Equal to Zero"<<endl;
cin>>bags;
}
int pitchers = (lemons / LEMONS_PER_PITCHER + bags / SPOONS_PER_PITCHER )/SPOONS_PER_BAG;
cout<<"you can make a maximum of "<<pitchers<<" pitchers"<<endl;
return 1;
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.