본문 바로가기

Projects/자바 슬라임 게임 만들기

hp가 0까지 달도록 하고 게임오버 시키기

반응형
// Study02.java

package study;

public class Study02 {
	
	public static void main(String[] args) {
	
		// hp를 100으로 설정한다.
		int hp = 100;
	
	// hp가 0보다 크다면,
	while (hp > 0) {
		// hp를 출력하라.
		System.out.println(hp);
		// hp 출력했으면, 기존 hp에서 20을 깎아라.
		hp = hp - 20;
	}

	System.out.println("Game Over");
	
}

}
반응형