class Test { void test1(){ System.out.println("Hello!"); System.out.println("user"); } void test2(String name){ System.out.println("Hello!"); System.out.println(name); } void test3(){ System.out.println("Good morning!"); System.out.println("user"); } }