Chapter 7: Problem 17
include
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.
Chapter 7: Problem 17
include
These are the key concepts you need to understand to accurately answer the question.
All the tools & learning materials you need for study success - in one app.
Get started for freeinclude
Write \(\mathrm{C}++\) statements that do the following: a. Define an enum type, courseType, with the values ALGEBRA, BEGINNING SPANISH, ASTRONOMY, GBNBRAL CHBMISTRY, PHYSICS, and LOGIC. b. Declare a variable newClass of the type courseType. c. Assign ASTRONOMY to the variable newClass. d. Advance newClass to the next value in the list. e. Output the value of the variable newClass. f. Input value in the variable newClass.
Define an enumeration type triangleType with values EQUILATERAL, RIGHT, ISOSCELES, and SCALENE. Also declare the variable triangle of type triangleType while defining this type.
Consider the following statement: string str = "Now is the time for the party!"; What is the output of the following statements? (Assume that all parts are independent of each other.) a. cout << str.size() << endl; b. cout << str.substr(7, 8) << endl; c. string::size_type ind = str.find('f'); string s = str.substr(ind + 4, 9); cout << s << endl; d. cout << str.insert(11, "best ") << endl; e. str.erase(16, 14); str.insert(16, "to study for the exam?"); cout << str << endl;
include
What do you think about this solution?
We value your feedback to improve our textbook solutions.