package chapter20230804;
import java.util.Scanner;
public class test19 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
String answer = "Y"; // while이 시작될 수 있도록 응답 값을 초기화
int count = 0;
while (answer.equals("Y") || answer.equals("y")) { // equals - 문자열을 비교하기 위해 사용
System.out.println("음악을 재생하시겠습니까? (Y)");
answer = sc.nextLine(); // 사용자의 응답을 받습니다.
if (answer.equals("Y")|| answer.equals("y")) {
++count;
System.out.println("음악을 " + count + " 번 재생했습니다.");
}
}
System.out.print("재생종료"); // Y, y 외의 문자를 받으면 종료
sc.close();
}
}