📚 Study/Java

JAVA :: Test067_메소드의 재귀 호출

bono-hye 2023. 9. 10. 00:36
public class Test067
{
    public static void main(String[] args)
    {
    	showHi(3);
    }


	public static void showHi(int cnt)
	{	
		System.out.println("Hi~");
		if (cnt==1)
		{
			return;
		}
		showHi(--cnt);
	}
}