+ 1
Fill in the blanks to create a class with a single method called "test".
Fill in the blanks to create a class with a single method called "test". public A { public void () { System.out.println(''Hi''); } }
4 ответов
+ 7
It seems like a homework instead of some query. Do it yourself.
https://www.sololearn.com/discuss/1316935/?ref=app
+ 1
public class
A {
public void test
() {
System.out.println(''Hi'');
}
}
0
public class A {
public void test() {
System.out.println(''Hi'');
}
}
0
class
test