Menu
×
×
Correct!
Exercise:Insert the missing part to print the number 8 in
static int myMethod(int x) {
return 5 + x;
}
public static void main(String[] args) {
System.out.println(myMethod(3));
}
Not CorrectClick here to try again. Correct!Next ❯static int myMethod(int x) {5 + x; } public static void main(String[] args) { System.out.println(myMethod(3)); } |