두 개의 주사위

두 개의 주사위

💫두 개의 주사위를 던졌을 때, 눈의 합이 8이 되는 모든 경우의 수를 출력하는 문제풀이💫

문제풀이


package study;

  public class dice {

    public static void main(String[] args) {

      int num = 1;
      int sum = 1;

       for (int i = 1; i <= 6; i++) { 	  // i가 6보다 작거나 같을 때
        for (int j = 1; j <= 6; j++) {    // j가 6보다 작거나 같을 때
          if(i + j == 8) {	 	  // i + j 가 8일 때
              num = i;				
              sum = j;
              System.out.println("("+ i + "," + j + ")");
          }
        }  
      }
    }
  }
  

출력

(1,7)
(2,6)
(3,5)
(4,4)
(5,3)
(6,2)
(7,1)

Categories:

Updated:

Leave a comment