입력받은 수 중, 홀수만 더한 값 출력하는 프로그램
2020. 5. 21. 11:37ㆍ알고리즘 Algorithm/알고리즘 테스트 algorithm test
반응형
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QSEhaA5sDFAUq&categoryId=AV5QSEhaA5sDFAUq&categoryType=CODE&&&
<해당 문제는 삼성 sw expert 아카데미의 문제에 저작권이 있습니다>
public class addOddNumber {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
sc.nextLine();
for (int i = 1; i <= T; i++) {
int sum = 0;
for (int j = 0; j < 10; j++) {
int s = sc.nextInt();
if (s % 2 != 0) {
// System.out.print(s + "\t");
sum += s;
}
}
sc.nextLine();
System.out.println("#" + i + " " + sum);
}
}
}
반응형
'알고리즘 Algorithm > 알고리즘 테스트 algorithm test' 카테고리의 다른 글
최빈수 구하기 문제 (0) | 2020.06.08 |
---|---|
평균값 구하기 문제 (0) | 2020.05.25 |