문제
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QSEhaA5sDFAUq
코드
내가 푼것
#include <iostream>
using namespace std;
int main(void)
{
int n = 0; //number of test cases
cin >> n;
for (int i = 0; i < n; i++) {
int result = 0;
for (int j = 0; j < 10; j++) {
int tmp = 0;
cin >> tmp;
if (tmp % 2 !=0) result += tmp;
}
cout << "#" << i + 1 << " " << result << endl;
}
}
찾아본것
-
728x90
반응형
'CS > Algorithm 문제' 카테고리의 다른 글
[Algorithm] STL vector (0) | 2019.10.14 |
---|---|
[Algorithm] 가장 큰 수 찾기 (0) | 2019.09.21 |
[Algorithm] bits/stdc++.h 헤더 (0) | 2019.09.19 |
[Algorithm] cin/cout 시간초과 방지 (0) | 2019.09.19 |
[SW Expert Academy] 2071. 평균값 구하기 (0) | 2019.09.15 |