Chapter 5: Problem 19
include
Short Answer
Step by step solution
Key Concepts
These are the key concepts you need to understand to accurately answer the question.
/*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
Learning Materials
Features
Discover
Chapter 5: Problem 19
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 free
What is the output of the following C++ code? num = 5; while (num > 5) num = num + 2; cout << num << endl;
Given the following program segment: j = 2; for (i = 1; i <= 5; i++); { cout << setw(4) << j; j = j + 5; } cout << endl; write a while loop and a do...while loop that have the same output.
To learn how nested for loops work, do a walk-through of the following program segments and determine, in each case, the exact output. a. int i, j; for (i = 1; i <= 5; i++) { for (j = 1; j <= 5; j++) cout << setw(3) << i * j; cout << endl; } b. int i, j; for (i = 1; i <= 5; i++) { for (j = 1; j <= 5; j++) cout << setw(3) << i; cout << endl; } c. int i, j; for (i = 1; i <= 5; i++) { for (j = (i + 1); j <= 5; j++) cout << setw(5) << j; cout << endl; } d. int i, j; for (i = 1; i <= 5; i++) { for (j = 1; j <= i; j++) cout << setw(3) << j; cout << endl; } e. const int M = 10; const int N = 10; int i, j; for (i = 1; i <= M; i++) { for (j = 1; j <= N; j++) cout << setw(3) << M * (i - 1) + j; cout << endl; } f. int i, j; for (i = 1; i <= 9; i++) { for (j = 1; j <= (9 - i); j++) cout << " "; for (j = 1; j <= i; j++) cout << setw(1) << j; for (j = (i - 1); j >= 1; j--) cout << setw(1) << j; cout << endl; }
When does the following while loop terminate?
ch = 'D';
while ('A' <= ch && ch <= 'Z')
ch = static_cast
How many times will each of the following loops execute? What is the output in each case? a. x = 5; y = 50; do x = x + 10; while (x < y); cout << x << " " << y << endl; b. x = 5; y = 80; do x = x * 2; while (x < y); cout << x << " " << y << endl; c. x = 5; y = 20; do x = x + 2; while (x >= y); cout << x << " " << y << endl; d. x = 5; y = 35; while (x < y) x = x + 10; cout << x << " " << y << endl; e. x = 5; y = 30; while (x <= y) x = x * 2; cout << x << " " << y << endl; f. x = 5; y = 30; while (x > y) x = x + 2; cout << x << " " << y << endl;
What do you think about this solution?
We value your feedback to improve our textbook solutions.