[SWEA-D1] C++ 2071. 평균값 구하기

민지·2023년 5월 18일
0

SWEA

목록 보기
2/23
post-custom-banner
#include<iostream>
#include<cmath> // round
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 sum=0;
        for(int i=0; i<10; i++)
        {
            int num;
            cin >> num;
            sum+=num;
        }
 
        cout << "#" << test_case << " " << round(sum/10.0) << endl;
    }
    return 0;
}
profile
개발일지

0개의 댓글