
Concept explainers
Explanation of Solution
Purpose of the given code:
The purpose of the given code is to find the fat grams for the ice cream flavor that is entered by the user.
Program:
The “if…else if” statements are highlighted below.
//Include required header files
#include<iostream>
#include<cstring>
using namespace std;
// Main function
int main()
{
//Declare constant variable
const int LENGTH = 20;
//Declare array of characters
char iceCream[LENGTH];
//Print the statements
cout<<"What flavor of ice cream do you like best? ";
cout<<"Chocolate, Vanilla, or Pralines and Pecan? ";
//Get a flovor from the user
cin.getline(iceCream, LENGTH);
//Print the statements
cout<<"Here is the number of fat grams for a half ";
cout<<"cup serving:\n";
//Check if the user enters "Chocolate"
if(strcmp(iceCream,"Chocolate")==0)
//Print the statement
cout<<"Chocolate: 9 fat grams.\n";
//Check if the user enters "Vanilla"
else if(strcmp(iceCream,"Vanilla")==0)
//Print the statement
cout<<"Vanilla: 10 fat grams.\n";
//Check if the user enters "Pralines" or "Pecan"
else if((strcmp(iceCream,"Pralines")==0)||(strcmp(iceCream,"Pecan")==0))
//Print the statement
cout<<"Pralines and Pecan: 14 fat grams...

Want to see the full answer?
Check out a sample textbook solution
Chapter 12 Solutions
Starting Out with C++: Early Objects (9th Edition)
- I would like help to resolve the following case, thank youarrow_forwardI need help with the following casearrow_forwardQ2) by using SHI-Tomasi detector method under the constraints shown in fig. 1 below find the corner that is usful to use in video-steganography? 10.8 ...... V...... 0.7 286 720 ke Fig.1 Threshold graph. The plain test is :Hello Ahmed the key is: 3a 2x5 5b 7c 1J 55 44 2X3 [ ] 2x3arrow_forward
- What significant justification is there for the -> operator in C and C++?arrow_forwardMultidimensional arrays can be stored in row major order, as in C++, or in column major order, as in Fortran. Develop the access functions for both of these arrangements for three-dimensional arrays.arrow_forwardWhat are the arguments for and against Java’s implicit heap storage recovery, when compared with the explicit heap storage recovery required in C++? Consider real-time systems.arrow_forward
- 8. Name and Email AddressesWrite a program that keeps names and email addresses in a dictionary as key-value pairs. The program should display a menu that lets the user look up a person’s email address, add a new name and email address, change an existing email address, and delete an existing name and email address. The program should pickle the dictionary and save it to a file when the user exits the program. Each time the program starts, it should retrieve the dictionary from the file and unpickle it. How would the user be able to use the program?arrow_forwardPlease solve and answer the question correctly please. Thank you!!arrow_forwardPlease solve and answer the question correctly please. Thank you!!arrow_forward
- EBK JAVA PROGRAMMINGComputer ScienceISBN:9781337671385Author:FARRELLPublisher:CENGAGE LEARNING - CONSIGNMENTMicrosoft Visual C#Computer ScienceISBN:9781337102100Author:Joyce, Farrell.Publisher:Cengage Learning,C++ for Engineers and ScientistsComputer ScienceISBN:9781133187844Author:Bronson, Gary J.Publisher:Course Technology Ptr
- C++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage LearningProgramming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:CengageProgramming with Microsoft Visual Basic 2017Computer ScienceISBN:9781337102124Author:Diane ZakPublisher:Cengage Learning




