+ 2
Plz help me to fill in the blanks to call the method "hello" from main
Public static void main(string[ ]args) { __________; } Static void hello () { System.out.println("hi"); }
3 Respostas
0
hello();
Try reading the lesson more carefully please.
0
public static void main(String[ ] args) {
;
}
static void hello() {
System.out.println("hi");
}
ans..hello();
0
hello()