Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
- Look at the
SortDemo
program. What control flow statements does it contain?- What's wrong with the following code snippet:
if (i = 1) { /* do something */ }- Look at the
WhileDemo
program and theDoWhileDemo
program. What would the output be from each program if you changed the value of each program'scopyFromMe
string togolly gee. this is fun.
Explain why you think each program will have the predicted output.
Check your answers.
- Consider the following code snippet.
if (aNumber >= 0) if (aNumber == 0) System.out.println("first string"); else System.out.println("second string"); System.out.println("third string");
- What output do you think the code will produce if
aNumber
is 3?- Write a test program containing the code snippet; make
aNumber
3. What is the output of the program? Is it what you predicted? Explain why the output is what it is. In other words, what is the control flow for the code snippet?- Using only spaces and line breaks, reformat the code snippet to make the control flow easier to understand.
- Use braces { and } to further clarify the code.
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
Copyright 1995-2005 Sun Microsystems, Inc. All rights reserved.