Monday, 8 February 2016

Setting Out to C++ (C++ Primer Plus Sixth Edition Solution Manual)

Leave a Comment

Chapter Review


Answers to Chapter Review.

1. What are the modules of C++ programs called?

2. What does the following preprocessor directive do?
    #include<iostream>

3. What does the following statement do?
    using namespace std;


4. What statement would you use to print the phrase “Hello, world” and then start a new line?

5. What statement would you use to create an integer variable with the name cheeses?

6. What statement would you use to assign the value 32 to the variable cheeses?

7. What statement would you use to read a value from keyboard input into the variable cheeses?

8. What statement would you use to print “We have X varieties of cheese,” where the current value of the cheeses variable replaces X?

9. What do the following function prototypes tell you about the functions?
     int froop(double t);

10. When do you not have to use the keyword return when you define a function?
 Suppose your main() function has the following line:
cout << “Please enter your PIN: “;
And suppose the compiler complains that cout is an unknown identifier.What is the likely cause of this complaint, and what are three ways to fix the problem?

Programming Exercises


1. Write a C++ program that displays your name and address (or if you value your privacy, a fictitious name and address).

2. Write a C++ program that asks for a distance in furlongs and converts it to yards.
(One furlong is 220 yards.)

3. Write a C++ program that uses three user-defined functions (counting main() as one) and produces the following output:

Three blind mice
Three blind mice
See how they run
See how they run

One function, called two times, should produce the first two lines, and the remaining function, also called twice, should produce the remaining output.

4. Write a program that asks the user to enter his or her age.The program then should display the age in months:

Enter your age: 29
Yo u r  a g e  i n  mo n t h s  i s  3 8 4 .

5. Write a program that has main() call a user-defined function that takes a Celsius temperature value as an argument and then returns the equivalent Fahrenheit value. The program should request the Celsius value as input from the user and display the result, as shown in the following code:

Please enter a Celsius value: 20
20 degrees Celsius is 68 degrees Fahrenheit.
For reference, here is the formula for making the conversion:
Fahrenheit = 1.8 × degrees Celsius + 32.0

6. Write a program that has main() call a user-defined function that takes a distance in light years as an argument and then returns the distance in astronomical units. The program should request the light year value as input from the user and display the result, as shown in the following code:

Enter the number of light years: 4.2
4.2 light years = 265608 astronomical units.

An astronomical unit is the average distance from the earth to the sun (about 150,000,000 km or 93,000,000 miles), and a light year is the distance light travels in a year (about 10 trillion kilometers or 6 trillion miles). (The nearest star after the sun is about 4.2 light years away.) Use type double (as in Listing 2.4) and this conversion factor: 1 light year = 63,240 astronomical units

7. Write a program that asks the user to enter an hour value and a minute value.The main() function should then pass these two values to a type void function that dis-plays the two values in the format
shown in the following sample run:

Enter the number of hours: 9
Enter the number of minutes: 28
Time: 9:28
If You Enjoyed This, Take 5 Seconds To Share It

0 Questions: