지우너
[SWEA] 2072. 홀수만 더하기 C++ 본문
문제
코드
#include<iostream>
using namespace std;
int main(int argc, char** argv)
{
int test_case;
int T;
cin>>T;
for(test_case = 1; test_case <= T; ++test_case)
{
int arr[10];
int answer=0;
for (int i=0; i<10; i++){
cin >> arr[i];
if (arr[i]%2 != 0) answer+=arr[i];
}
cout << "#" << test_case << " " << answer<<'\n';
}
return 0;
}
'Problem Solving' 카테고리의 다른 글
[백준(BOJ)] 19948 음유시인 영재 C++ (0) | 2024.05.25 |
---|---|
[코드트리] 아름다운 수열 2 C++ (0) | 2024.05.12 |
[코드트리] 재귀함수를 이용한 최소공배수 C++ (0) | 2024.04.06 |
[프로그래머스 Lv.0] 이진수 더하기 C++ (0) | 2024.03.06 |
[프로그래머스 Lv.0] 안전지대 C++ (0) | 2024.03.01 |