U E D R , A S I H C RSS

JTD Study/첫번째과제/원희

~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형 ^^ -
Valid XHTML 1.0! Valid CSS! powered by MoniWiki
last modified 2021-02-07 05:23:29
Processing time 0.0090 sec