가위,바위,보 게임
import java.util.*; import java.io.*; public class rsp { public static void main(String[] args) throws IOException { Random r = new Random(); int computer = r.nextInt(2); // = int com = Math.abs(r.nextInt()%3) //0부터 2사이의 난수구하기 BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); //객체-리더-버퍼를 한번에연결 String user; //문자를 저장할 변수 System.out.print("가위 바위 보 중 하나를 선택하세요."); user = in.r..
2010.10.09