Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
메소드구현하기-해결
//Title of this code //'main' method must be in a class 'Rextester'. //Compiler version 1.8.0_45 import java.util.*; import java.lang.*; class Rextester { public static void main(String args[]) { Animal ani = new Animal(); ani.Cry(); } } // 한글은 입력이 안됩니다. // 실행 시에 "Grr~"이 출력되게 Animal 클래스를 구현해주세요 class Animal{ public void Cry(){ System.out.println("Grr~"); } }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
Kochergina
2darray
Increment Operator
Using Recursion reverse the Line
Sum of ODD and EVEN numbers in an array
susun
Street light
Validate BST
Brackets balancing
2B
Please log in to post a comment.