JAVA/4. Array
InfRecul 예제
날아올라↗↗
2016. 6. 22. 15:44
728x90
반응형
- package test.com;
- public class InfRecul {
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- showHi(3);
- }
- public static void showHi(int cnt){
- System.out.println("Hi~");
- showHi(cnt--);
- if(cnt == 1)
- return;
- }
- }
728x90
반응형