[알고리즘] 홀수만 더하기
2023. 12. 31. 23:02ㆍ알고리즘 풀이/Java
나의 풀이
- 나머지를 구하는 연산은 %임을 배웠다.
import java.util.Scanner;
import java.io.FileInputStream;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int T;
T=sc.nextInt();
for(int test_case = 1; test_case <= T; test_case++)
{
int total = 0;
for (int i = 0; i < 10; i++) {
int number = sc.nextInt();
if (number % 2 != 0) {
total += number;
}
}
System.out.println("#" + test_case + " " + total);
}
}
}
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QSEhaA5sDFAUq
'알고리즘 풀이 > Java' 카테고리의 다른 글
[알고리즘] 파리퇴치3 (1) | 2024.01.01 |
---|---|
[알고리즘] 자릿수 더하기 (0) | 2023.12.31 |
[알고리즘] 중간값 찾기 (0) | 2023.12.31 |
[알고리즘] 1대1 가위바위보 (1) | 2023.12.31 |
[알고리즘] 최대수 구하기 (0) | 2023.12.31 |