[ java ] 끝말잇기 게임
페이지 정보
작성자 웹지기 댓글 0건 조회 3,061회 작성일 20-12-17 18:22본문
import java.util.Scanner;
public class Exam10_Method {
public static void main(String[] args) {
//끝말잇기
Scanner sc = new Scanner(System.in);
System.out.print("제시어 >> ");
String str = sc.next();
String str2 = "";
while(true) {
System.out.println(str+"---"+str2+"\t 1");
System.out.print("단어를 입력해 주세요 : ");
str2 = sc.next();
System.out.println(str+"---"+str2+"\t 2");
if((str.charAt(str.length()-1)) == (str2.charAt(0))) {
str = str2;
} else {
System.out.println(" 종료 되었습니다. ");
break;
}
}
}
}
제시어 >> 대한민국
단어를 입력해 주세요 : 국민의짐
단어를 입력해 주세요 : 짐짝
단어를 입력해 주세요 : 짝사랑
단어를 입력해 주세요 : 랑은없자나
단어를 입력해 주세요 : 나두세요
단어를 입력해 주세요 : 요를레이요
단어를 입력해 주세요 : 요래도요
단어를 입력해 주세요 : 요기까지만
단어를 입력해 주세요 : 안녕
종료 되었습니다.
댓글목록
등록된 댓글이 없습니다.