Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

// This program demonstrates the use of characters and strings // bos #include #include using namespace std; // Declaration of constants const string FAVORITESODA =

// This program demonstrates the use of characters and strings

// bos

#include #include using namespace std;

// Declaration of constants const string FAVORITESODA = "Dr. Dolittle"; // use double quotes for strings const char BESTRATING = 'A'; // use single quotes for characters

int main()

{

char rating; // 2nd highest product rating string favoriteSnack; // most preferred snack int numberOfPeople; // the number of people in the survey int topChoiceTotal; // the number of people who prefer the top choice // Fill in the code to do the following: // Assign the value of "crackers" to favoriteSnack // Assign a grade of 'B' to rating // Assign the number 250 to the numberOfPeople // Assign the number 148 to the topChoiceTotal

// Fill in the blanks of the following: cout << "The preferred soda is " <<____________<< endl; cout << "The preferred snack is " <<___________<< endl; cout << "Out of " <<_____________ << " people " <<____________ << " chose these items!" << endl; cout << "Each of these products were given a rating of " <<__________; cout << " from our expert tasters" << endl; cout << "The other products were rated no higher than a " << rating << endl;

return 0;

}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Expert Oracle9i Database Administration

Authors: Sam R. Alapati

1st Edition

1590590228, 978-1590590225

More Books

Students also viewed these Databases questions

Question

What are the characteristics of the perfectly competitive market?

Answered: 1 week ago