by
[Exercise |
API Docs |
Short Course|
Exercises]
|
The signature of this method is:
public void sayHello();
Make the start() method of Methodcall call sayHello().
Add this code:
sayHello();
Define a method called addTwo() that takes an integer argument, adds 2 to it, and returns that result.
Use an int, not an Integer
Task 4
In the start() method of Methodcall, define a local integer variable and initialize it to the result of calling addTwo(3). Print out the variable; that is, print out the result of the method call. Define another local integer variable initialize it to the result of calling addTwo(19). Print out its result.
To print out a value:
System.out.println("msg");
Copyright 1996-2000 jGuru.com. All Rights Reserved.
|
| ||||||||||||