JAVA #26
int[][] score = { {100,100}, {90,90} }; => 2ํ * 2์ด์ 2์ฐจ์ ๋ฐฐ์ด์์๊ฐ์ ์ง์ ์ด๊ธฐํ ํ๋ฉด์ score ๋ฐฐ์ด ์์ฑ int sum = 0; => ๋ฐฐ์ด ์์ ๋์ ํฉ for(int[] arr:score) => 2์ฐจ์ ๋ฐฐ์ด์ 1์ฐจ์ ๋ฐฐ์ด๋ก ์์๊ฐ์ ๊ฐ์ ธ์ด for(int a: arr) => 1์ฐจ์๋ฐฐ์ด์ ์ผ๋ฐ๋ณ์๋ก ์์๊ฐ์ ๊ฐ์ ธ์ด
2020.03.30