Problem Solving with C++ (9th Edition)
Problem Solving with C++ (9th Edition)
9th Edition
ISBN: 9780133591743
Author: Walter Savitch
Publisher: PEARSON
bartleby

Videos

Textbook Question
Book Icon
Chapter 3.2, Problem 20STE

Though we urge you not to program using this style, we are providing an exercise that uses nested blocks to help you understand the scope rules. Give the output that this code fragment would produce if embedded in an otherwise complete, correct program.

{

  int x = 1;

  cout << x << endl;

  {

  cout << x << endl;

  int x = 2;

  cout << x << endl ;

  {

  cout << x << endl ;

  int x = 3;

cour << x << endl ;

  }

  cout << x << endl;

  }

  cout << x << endl ;

}

Blurred answer
Students have asked these similar questions
Write a C++ program based on the design you created in Exercise 2a and name it NameSort.cpp. Step through the code by hand. // Enter your name as a comment for program identification // Program assignment NameSort.cpp // Enter your class section, and time // /* The program NameSort.cpp is a program that prompts the user to enter three names separated by blanks. The names are displayed in alphabetical order. */ /* The user will input three names separated by blanks. */ /* The names will be displayed in alphabetical order. */ //header files // use the correct preprocessor directives for input/output and strings ------------------------- --------------------------- ------------------------ int main() { // declare variables /* declare 3 string variables to read in the three names */ --------------------------------------------- // // prompt the user for three names --------------------------------------------- // read in the three names ----------------------------------------------- // //…
You are to design a game that can be either single-player or multi-player (no AI required). Some example games are: • Standard card games • Connect four • Checkers • Oregon Trail • A game of your own creation! You should provide detailed instructions on what the code’s intended operation is. You must give sample input that tests the code rigorously for different scenarios. In C++ please.
in c++ /*** Problem 1: Simple Selection* You and your date are trying to get a table at a * restaurant. The first input ("you") is the stylishness * of your clothes, in the range 0..10, and the second * ("date") is the stylishness of your date's clothes. * The result getting the table is encoded as "no", * "maybe", or "yes". If either of you is very stylish, * 8 or more, then the result is yes. With the exception * that if either of you has style of 2 or less, then * the result is no. Otherwise the result is maybe. ** - input of 5, 10 -> "yes" * - input of 5, 2 -> "no" * - input of 5, 5 -> "maybe"*/ /*** Problem 2: Intermediate Selection/Logic** Given 3 int values, a b c, set result to their sum. * However, if one of the values is the same as another * of the values, it does not count towards the sum. ** - input of 1, 2, 3 -> 6* - input of 3, 2, 3 -> 2* - input of 3, 3, 3 -> 0*/

Chapter 3 Solutions

Problem Solving with C++ (9th Edition)

Ch. 3.2 - What output will be produced by the following...Ch. 3.2 - Write a multiway if-else statement that classifies...Ch. 3.2 - Given the following declaration and output...Ch. 3.2 - Given the following declaration and output...Ch. 3.2 - What output will be produced by the following...Ch. 3.2 - What would be the output in Self-Test Exercise 15...Ch. 3.2 - What would be the output in Self-Test Exercise 15...Ch. 3.2 - What would be the output in Self-Test Exercise 15...Ch. 3.2 - Prob. 19STECh. 3.2 - Though we urge you not to program using this...Ch. 3.3 - Prob. 21STECh. 3.3 - Prob. 22STECh. 3.3 - What is the output of the following (when embedded...Ch. 3.3 - What is the output of the following (when embedded...Ch. 3.3 - Prob. 25STECh. 3.3 - What is the output of the following (when embedded...Ch. 3.3 - Prob. 27STECh. 3.3 - For each of the following situations, tell which...Ch. 3.3 - Rewrite the following loops as for loops. a.int i...Ch. 3.3 - What is the output of this loop? Identify the...Ch. 3.3 - What is the output of this loop? Comment on the...Ch. 3.3 - What is the output of this loop? Comment on the...Ch. 3.3 - What is the output of the following (when embedded...Ch. 3.3 - What is the output of the following (when embedded...Ch. 3.3 - What does a break statement do? Where is it legal...Ch. 3.4 - Write a loop that will write the word Hello to the...Ch. 3.4 - Write a loop that will read in a list of even...Ch. 3.4 - Prob. 38STECh. 3.4 - Prob. 39STECh. 3.4 - What is an off-by-one loop error?Ch. 3.4 - You have a fence that is to be 100 meters long....Ch. 3 - Write a program to score the paper-rock-scissor...Ch. 3 - Write a program to compute the interest due, total...Ch. 3 - Write an astrology program. The user types in a...Ch. 3 - Horoscope Signs of the same Element are most...Ch. 3 - Write a program that finds and prints all of the...Ch. 3 - Buoyancy is the ability of an object to float....Ch. 3 - Write a program that finds the temperature that is...Ch. 3 - Write a program that computes the cost of a...Ch. 3 - (This Project requires that you know some basic...Ch. 3 - Write a program that accepts a year written as a...Ch. 3 - Write a program that scores a blackjack hand. In...Ch. 3 - Interest on a loan is paid on a declining balance,...Ch. 3 - The Fibonacci numbers F are defined as follows. F...Ch. 3 - The value ex can be approximated by the sum 1 + x...Ch. 3 - Prob. 8PPCh. 3 - Prob. 9PPCh. 3 - Repeat Programming Project 13 from Chapter 2 but...Ch. 3 - The keypad on your oven is used to enter the...Ch. 3 - The game of 23 is a two-player game that begins...Ch. 3 - Holy digits Batman! The Riddler is planning his...

Additional Engineering Textbook Solutions

Find more solutions based on key concepts
What is executed any time a class property is read?

Starting out with Visual C# (4th Edition)

What populates the Smalltalk world?

Concepts Of Programming Languages

Write code that does the following: opens a file named MyName.txt, writes your first name to the file, and then...

Starting Out with Java: From Control Structures through Data Structures (3rd Edition)

Design a function to compare the contents of two stacks.

Computer Science: An Overview (13th Edition) (What's New in Computer Science)

Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education
What Are Data Types?; Author: Jabrils;https://www.youtube.com/watch?v=A37-3lflh8I;License: Standard YouTube License, CC-BY
Data Types; Author: CS50;https://www.youtube.com/watch?v=Fc9htmvVZ9U;License: Standard Youtube License