본문 바로가기
코딩 study

홀짝 카운트

by 도경다경 2023. 2. 1.
반응형

import java.io.*;
import java.util.*;

public class Main {

public static int[][] arr = {{3,4,1},{2,1,4},{3,3,0}};

    public static void main(String[] args) throws IOException {
    
     int max = arr.length * arr[0].length;
     int single = 0;
    
     for(int y=0;y<3;y++){
     for(int x=0;x<3;x++) {
     if(arr[y][x]%2==1) single++;
     }
     }
    
     System.out.println("짝수 : " + (max-single));
     System.out.println("홀수 : " + single);
              
    }
}

반응형

'코딩 study' 카테고리의 다른 글

2차원 배열 char 입출력  (0) 2023.02.01
채점  (0) 2023.02.01
빠른 min max fastest  (0) 2023.02.01
up down  (0) 2023.02.01
수우미양가 switch case  (0) 2023.02.01

댓글