import java.util.Random;
import java.util.Scanner;
public class Ex_연습장 {
public static void main(String[] args) {
Random rd = new Random();
Scanner sc = new Scanner(System.in);
int cnt = 0 ;
while(true) {
int num1 = rd.nextInt(10)+1;
int num2 = rd.nextInt(10)+1;
System.out.print(num1+"+"+num2+"=");
int result = sc.nextInt();
if(num1+num2 == result) {
System.out.println("SUCCESS!");
} else {
System.out.println("FAIL...");
cnt++;
if(cnt == 5) {
System.out.println("GAME OVER!");
break;
}
}
}
}
}
'언어 > JAVA' 카테고리의 다른 글
배열_배열 선언 후 각각의 인덱스에 문자로 초기화 (0) | 2023.03.01 |
---|---|
for문_A~Z까지 출력 (0) | 2023.03.01 |
다중for문_별 모양 출력 (0) | 2023.03.01 |
다중for문_구구단 출력 (0) | 2023.02.27 |
for문 예제_구구단 출력하기 (0) | 2023.02.27 |
댓글