공부하는 히욤이

2072. 홀수만 더하기 본문

Algorithm/SW Expert Academy

2072. 홀수만 더하기

히욤이 2019. 1. 11. 00:00

SW Expert 2072. 홀수만 더하기

문제의 저작권은 SW Expert에 있습니다 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import java.util.Scanner;
 
class Solution {
    public static void main(String args[]) {
 
        Scanner scanner = new Scanner(System.in);
        int t = scanner.nextInt();
        int[] num = new int[10];
        for (int test_case = 0; test_case < t; test_case++) {
            for (int i = 0; i < num.length; i++) {
                num[i] = scanner.nextInt();
 
            }
            int sum = 0;
            for (int i = 0; i < num.length; i++) {
                if (num[i]%2 == 1) {
                    sum = sum + num[i];
                }
            }
            System.out.println("#" + (test_case+1)+" " + sum);
        }
    }
 
}
 
cs


'Algorithm > SW Expert Academy' 카테고리의 다른 글

2063. 중간값 찾기  (0) 2019.01.11
1545. 거꾸로 출력해 보아요  (0) 2019.01.11
2019. 더블더블  (0) 2019.01.10
2070. 큰 놈, 작은 놈, 같은 놈  (0) 2019.01.10
2068. 최대수 구하기  (0) 2019.01.10