2.7 |
Discuss the meaning of each of the following objects:
- std::cin
- std::cout
|
2.8 |
Fill in the blanks in each of the following:
- ______ are used to document a program and improve its readability.
- The object used to print information on the screen is _____.
- A C++ statement that makes a decision is ______.
- Most calculations are normally performed by ______ statements.
- The ______ object inputs values from the keyboard.
|
2.9 |
Write a single C++ statement or line that accomplishes each of the following:
- Print the message "Enter two numbers".
- Assign the product of variables b and c to variable a.
- State that a program performs a payroll calculation (i.e., use text that helps to document a program).
- Input three integer values from the keyboard into integer variables a, b and c.
|
2.10 |
State which of the following are true and which are false. If false, explain your answers.
- C++ operators are evaluated from left to right.
- The following are all valid variable names: _under_bar_, m928134, t5, j7, her_sales, his_account_total, a, b, c, z, z2.
- The statement cout << "a = 5;"; is a typical example of an assignment statement.
- A valid C++ arithmetic expression with no parentheses is evaluated from left to right.
- The following are all invalid variable names: 3g, 87, 67h2, h22, 2h.
|
2.11 |
Fill in the blanks in each of the following:
- What arithmetic operations are on the same level of precedence as multiplication? ______.
- When parentheses are nested, which set of parentheses is evaluated first in an arithmetic expression? ______.
- A location in the computer's memory that may contain different values at various times throughout the execution of a program is called a ______.
|
2.12 |
What, if anything, prints when each of the following C++ statements is performed? If nothing prints, then answer "nothing." Assume x = 2 and y = 3.
- cout << x;
- cout << x + x;
- cout << "x=";
- cout << "x = " << x;
- cout << x + y << " = " << y + x;
- z = x + y;
- cin >> x >> y;
- // cout << "x + y = " << x + y;
- cout << "
";
|
2.13 |
Which of the following C++ statements contain variables whose values are replaced?
- cin >> b >> c >> d >> e >> f;
- p = i + j + k + 7;
- cout << "variables whose values are replaced";
- cout << "a = 5";
|
2.14 |
Given the algebraic equation y = ax3 + 7, which of the following, if any, are correct C++ statements for this equation?
- y = a * x * x * x + 7;
- y = a * x * x * ( x + 7 );
- y = ( a * x ) * x * ( x + 7 );
- y = (a * x) * x * x + 7;
- y = a * ( x * x * x ) + 7;
- y = a * x * ( x * x + 7 );
|
|
|
2.15 |
State the order of evaluation of the operators in each of the following C++ statements and show the value of x after each statement is performed.
- x = 7 + 3 * 6 / 2 - 1;
- x = 2 % 2 + 2 * 2 - 2 / 2;
- x = ( 3 * 9 * ( 3 + ( 9 * 3 / ( 3 ) ) ) );
|
2.16 |
Write a program that asks the user to enter two numbers, obtains the two numbers from the user and prints the sum, product, difference, and quotient of the two numbers.
|
2.17 |
Write a program that prints the numbers 1 to 4 on the same line with each pair of adjacent numbers separated by one space. Do this several ways:
- Using one statement with one stream insertion operator.
- Using one statement with four stream insertion operators.
- Using four statements.
|
2.18 |
Write a program that asks the user to enter two integers, obtains the numbers from the user, then prints the larger number followed by the words "is larger." If the numbers are equal, print the message "These numbers are equal."
|
2.19 |
Write a program that inputs three integers from the keyboard and prints the sum, average, product, smallest and largest of these numbers. The screen dialog should appear as follows:
Input three different integers: 13 27 14
Sum is 54
Average is 18
Product is 4914
Smallest is 13
Largest is 27
|
|
2.20 |
Write a program that reads in the radius of a circle as an integer and prints the circle's diameter, circumference and area. Use the constant value 3.14159 for p. Do all calculations in output statements. [Note: In this chapter, we have discussed only integer constants and variables. In Chapter 4 we discuss floating-point numbers, i.e., values that can have decimal points.]
|
2.21 |
Write a program that prints a box, an oval, an arrow and a diamond as follows:
********* *** * *
* * * * *** * *
* * * * ***** * *
* * * * * * *
* * * * * * *
* * * * * * *
* * * * * * *
* * * * * * *
********* *** * *
|
|
2.22 |
What does the following code print?
cout << "*
**
***
****
*****" << endl;
|
2.23 |
Write a program that reads in five integers and determines and prints the largest and the smallest integers in the group. Use only the programming techniques you learned in this chapter.
|
2.24 |
Write a program that reads an integer and determines and prints whether it is odd or even. [Hint: Use the modulus operator. An even number is a multiple of two. Any multiple of two leaves a remainder of zero when divided by 2.]
|
|
|
2.25 |
Write a program that reads in two integers and determines and prints if the first is a multiple of the second. [Hint: Use the modulus operator.]
|
2.26 |
Display the following checkerboard pattern with eight output statements, then display the same pattern using as few statements as possible.
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
* * * * * * * *
|
|
2.27 |
Here is a peek ahead. In this chapter you learned about integers and the type int. C++ can also represent uppercase letters, lowercase letters and a considerable variety of special symbols. C++ uses small integers internally to represent each different character. The set of characters a computer uses and the corresponding integer representations for those characters is called that computer's character set. You can print a character by enclosing that character in single quotes, as with
cout << 'A'; // print an uppercase A
You can print the integer equivalent of a character using static_cast as follows:
cout << static_cast< int >( 'A' ); // print 'A' as an integer
This is called a cast operation (we formally introduce casts in Chapter 4). When the preceding statement executes, it prints the value 65 (on systems that use the ASCII character set). Write a program that prints the integer equivalent of a character typed at the keyboard. Test your program several times using uppercase letters, lowercase letters, digits and special characters (like $).
|
2.28 |
Write a program that inputs a five-digit integer, separates the integer into its individual digits and prints the digits separated from one another by three spaces each. [Hint: Use the integer division and modulus operators.] For example, if the user types in 42339, the program should print:
|
2.29 |
Using only the techniques you learned in this chapter, write a program that calculates the squares and cubes of the integers from 0 to 10 and uses tabs to print the following neatly formatted table of values:
integer square cube
0 0 0
1 1 1
2 4 8
3 9 27
4 16 64
5 25 125
6 36 216
7 49 343
8 64 512
9 81 729
10 100 1000
|
|