5.5 |
Describe the four basic elements of counter-controlled repetition.
|
5.6 |
Compare and contrast the while and for repetition statements.
|
5.7 |
Discuss a situation in which it would be more appropriate to use a do...while statement than a while statement. Explain why.
|
5.8 |
Compare and contrast the break and continue statements.
|
5.9 |
Find and correct the error(s) in each of the following segments of code:
-
for ( i = 100, i >= 1, i++ )
System.out.println( i );
- The following code should print whether integer value is odd or even:
switch ( value % 2 )
{
case 0:
System.out.println( "Even integer" );
case 1:
System.out.println( "Odd integer" );
}
- The following code should output the odd integers from 19 to 1:
for ( i = 19; i >= 1; i += 2 )
System.out.println( i );
- The following code should output the even integers from 2 to 100:
counter = 2;
do
{
System.out.println( counter );
counter += 2 ;
} While ( counter < 100 );
|
5.10 |
What does the following program do?
1 public class Printing
2 {
3 public static void main( String args[] )
4 {
5 for ( int i = 1; i <= 10; i++ )
6 {
7 for ( int j = 1; j <= 5; j++ )
8 System.out.print( '@' );
9
10 System.out.println();
11 } // end outer for
12 } // end main
13 } // end class Printing
|
5.11 |
Write an application that finds the smallest of several integers. Assume that the first value read specifies the number of values to input from the user.
|
5.12 |
Write an application that calculates the product of the odd integers from 1 to 15.
|
5.13 |
Factorials are used frequently in probability problems. The factorial of a positive integer n (written n! and pronounced " n factorial") is equal to the product of the positive integers from 1 to n. Write an application that evaluates the factorials of the integers from 1 to 5. Display the results in tabular format. What difficulty might prevent you from calculating the factorial of 20?
|
5.14 |
Modify the compound-interest application of Fig. 5.6 to repeat its steps for interest rates of 5, 6, 7, 8, 9 and 10%. Use a for loop to vary the interest rate.
|
5.15 |
Write an application that displays the following patterns separately, one below the other. Use for loops to generate the patterns. All asterisks (*) should be printed by a single statement of the form System.out.print( '*' ); which causes the asterisks to print side by side. A statement of the form System.out.println(); can be used to move to the next line. A statement of the form System.out.print( ' ' ); can be used to display a space for the last two patterns. There should be no other output statements in the program. [Hint: The last two patterns require that each line begin with an appropriate number of blank spaces.]
-
*
**
***
****
*****
******
*******
********
*********
**********
-
**********
*********
********
*******
******
*****
****
***
**
*
-
**********
*********
********
*******
******
*****
****
***
**
*
-
*
**
***
****
*****
******
*******
********
*********
**********
|
|
|
5.16 |
One interesting application of computers is to display graphs and bar charts. Write an application that reads five numbers between 1 and 30. For each number that is read, your program should display the same number of adjacent asterisks. For example, if your program reads the number 7, it should display *******.
|
5.17 |
A mail-order house sells five products whose retail prices are as follows: Product 1, $2.98; product 2, $4.50; product 3, $9.98; product 4, $4.49 and product 5, $6.87. Write an application that reads a series of pairs of numbers as follows:
- product number
- quantity sold
Your program should use a switch statement to determine the retail price for each product. It should calculate and display the total retail value of all products sold. Use a sentinel-controlled loop to determine when the program should stop looping and display the final results.
|
5.18 |
Modify the application in Fig. 5.6 to use only integers to calculate the compound interest. [Hint: Treat all monetary amounts as integral numbers of pennies. Then break the result into its dollars and cents portions by using the division and remainder operations, respectively. Insert a period between the dollars and the cents portions.]
|
5.19 |
Assume that i = 1, j = 2, k = 3 and m = 2. What does each of the following statements print?
- System.out.println( i == 1 );
- System.out.println( j == 3 );
- System.out.println( ( i >= 1 ) && ( j < 4 ) );
- System.out.println( ( m <= 99 ) & ( k < m ) );
- System.out.println( ( j >= i ) || ( k == m ) );
- System.out.println( ( k + m < j ) | ( 3 - j >= k ) );
- System.out.println( !( k > m ) );
|
5.20 |
Calculate the value of p from the infinite series
Print a table that shows the value of p approximated by computing one term of this series, by two terms, by three terms, and so on. How many terms of this series do you have to use before you first get 3.14? 3.141? 3.1415? 3.14159?
|
5.21 |
(Pythagorean Triples) A right triangle can have sides whose lengths are all integers. The set of three integer values for the lengths of the sides of a right triangle is called a Pythagorean triple. The lengths of the three sides must satisfy the relationship that the sum of the squares of two of the sides is equal to the square of the hypotenuse. Write an application to find all Pythagorean triples for side1, side2 and the hypotenuse, all no larger than 500. Use a triple-nested for loop that tries all possibilities. This method is an example of "brute-force" computing. You will learn in more advanced computer science courses that there are large numbers of interesting problems for which there is no known algorithmic approach other than using sheer brute force.
|
5.22 |
Modify Exercise 5.15 to combine your code from the four separate triangles of asterisks such that all four patterns print side by side. Make clever use of nested for loops.
|
5.23 |
(De Morgan's Laws) In this chapter, we have discussed the logical operators &&, &, ||, |, ^ and !. DeMorgan's Laws can sometimes make it more convenient for us to express a logical expression. These laws state that the expression !(condition1 && condition2) is logically equivalent to the expression (!condition1 || ! condition2). Also, the expression !(condition1 || condition2) is logically equivalent to the expression (!condition1 && ! condition2). Use De Morgan's Laws to write equivalent expressions for each of the following, then write an application to show that both the original expression and the new expression in each case produce the same value:
- !( x < 5 ) && !( y >= 7 )
- !( a == b ) || !( g != 5 )
- !( ( x <= 8 ) && ( y > 4 ) )
- !( ( i > 4 ) || ( j <= 6 ) )
|
5.24 |
Write an application that prints the following diamond shape. You may use output statements that print a single asterisk (*), a single space or a single newline character. Maximize your use of repetition (with nested for statements), and minimize the number of output statements.
*
***
*****
*******
*********
*******
*****
***
*
|
|
5.25 |
Modify the application you wrote in Exercise 5.24 to read an odd number in the range 1 to 19 to specify the number of rows in the diamond. Your program should then display a diamond of the appropriate size.
|
5.26 |
A criticism of the break statement and the continue statement is that each is unstructured. Actually, break statements and continue statements can always be replaced by structured statements, although doing so can be awkward. Describe in general how you would remove any break statement from a loop in a program and replace that statement with some structured equivalent. [Hint: The break statement exits a loop from the body of the loop. The other way to exit is by failing the loop-continuation test. Consider using in the loop-continuation test a second test that indicates "early exit because of a'break' condition."] Use the technique you develop here to remove the break statement from the application in Fig 5.12.
|
5.27 |
What does the following program segment do?
for ( i = 1; i <= 5; i++ )
{
for ( j = 1; j <= 3; j++ )
{
for ( k = 1; k <= 4; k++ )
System.out.print( '*' );
System.out.println();
} // end inner for
System.out.println();
} // end outer for
|
5.28 |
Describe in general how you would remove any continue statement from a loop in a program and replace it with some structured equivalent. Use the technique you develop here to remove the continue statement from the program in Fig. 5.13.
|
5.29 |
("The Twelve Days of Christmas" Song) Write an application that uses repetition and switch statements to print the song "The Twelve Days of Christmas." One switch statement should be used to print the day (i.e., "First," "Second," etc.). A separate switch statement should be used to print the remainder of each verse. Visit the Web site www.12days.com/library/carols/12daysofxmas.htm for the complete lyrics of the song.
|