~cpp code
import javax.swing.*;
//import java.io.*;
public class NumberBaseballGame {
public static void main(String[] args){
int[] comNum = new int[3];
comNum[0] = (int)(Math.random() * 10 +1);
comNum[1] = (int)(Math.random() * 10 +1);
comNum[2] = (int)(Math.random() * 10 +1);
int[] userNum = new int[3];
int strikeCounter = 0, ballCounter=0, outCounter=0;
int i, j;
for(i=0;i<3;i++){
if (comNum[i] == 10){
comNum[i] --;
}
}
for(;;){
userNum[0] = Integer.parseInt(JOptionPane.showInputDialog(null," "));
userNum[1] = Integer.parseInt(JOptionPane.showInputDialog(null," "));
userNum[2] = Integer.parseInt(JOptionPane.showInputDialog(null," "));
//String temp = JOptionPane.showInputDialog(null," ( )");
strikeCounter = 0;
ballCounter = 0;
for(i = 0; i < 3; i++){
for(j = 0; j < 3; j++){
if (comNum[i] == userNum[j] && i == j)
strikeCounter++;
else if(comNum[i] == userNum[j] && j != i && (comNum[j] != userNum[j]))
ballCounter++;
}
}
if(strikeCounter == 3){
JOptionPane.showMessageDialog(null, "3strike!! You win!");
break;
}
outCounter++;
JOptionPane.showMessageDialog(null, strikeCounter +"strike " + ballCounter + "ball " + outCounter + "out!");
if(outCounter == 3 && strikeCounter == 0){
JOptionPane.showMessageDialog(null,"?ㅋ Game Over");
break;
}
}
}
}
== ==
걸
까
;;;ㅠㅠ
기
,
개
1 2 3
게
1,2,3
게
게
고
......ㅠㅠ
각
계
결국
기......
- . 100, int 값 고 123%10 3 고, 12%10 2 고 1고... 고, String 기 게 ^^ 금 각 -