package com.tistory.tansanc;
import java.util.Scanner;
public class User {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String[] word = {"기러기", "기차표","스피커"};
String oldWord = word[
(int)(Math.random()*3) ];
System.out.println("제시어 : " + oldWord);
String newWord = sc.nextLine();
if( oldWord.charAt(2) ==
newWord.charAt(0) )
{
System.out.println("OK");
}
else
{
System.out.println("ERROR");
}
while(true)
{
oldWord = newWord;
newWord = sc.nextLine();
if( oldWord.charAt(2) ==
newWord.charAt(0) )
{
System.out.println("OK");
}
else
{
System.out.println("ERROR");
}
}
}
}
'Programming > JAVA,JSP' 카테고리의 다른 글
JAVA 가계부 (0) | 2014.01.14 |
---|---|
JAVA 쿵쿵따 게임 #2 중복 탐지 (0) | 2014.01.09 |
JAVA 제네릭 컬렉션 실습 (1) | 2014.01.09 |
JAVA 객체지향 핵심 이론 (0) | 2014.01.07 |
JAVA 행렬 곱셈 결과 (0) | 2014.01.06 |