Question: Java Programming Practice Question public class PracticeTwo { public static int addTwo (int num) { // add two to num, and return the value to
Java Programming Practice Question
public class PracticeTwo {
public static int addTwo (int num) {
// add two to num, and return the value to the calling program
// you cannot use System.out.println here
return 0; // this must be modified!!!!
}
public static void main(String[] args) {
// add two to ten using the function addTwo, and print the result
// add two to 26 using the function addTwo, and print the result
}
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
