관리 메뉴

Kim's Programming

2072. 홀수만 더하기 본문

SW ExpertAcademy/D1

2072. 홀수만 더하기

Programmer. 2018. 11. 30. 22:34

2072. 홀수만 더하기

문제출처: https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QSEhaA5sDFAUq&categoryId=AV5QSEhaA5sDFAUq&categoryType=CODE




풀이 방법



<코드>


#include <iostream>
#include <math.h>
int main()
{
    int n{0};
    std::cin>>n;
     
    for(int testCase =1;testCase <=n;testCase ++)
    {
        int input{0};
        float sum{0};
        for(int i=0;i<10;i++)
        {
            std::cin>>input;
            if(input%2==1) sum+=input;
        }
        std::cout<<"#"<<testCase<<' '<< sum <<"\n";
    }
     
    return 0;
}

'SW ExpertAcademy > D1' 카테고리의 다른 글

2071. 평균값 구하기  (0) 2018.11.30
2070. 큰 놈, 작은 놈, 같은 놈  (0) 2018.11.30
2068. 최대수 구하기  (0) 2018.11.30
2063. 중간값 찾기  (0) 2018.11.30
2058. 자릿수 더하기  (0) 2018.11.30