N

(SWEA c++)6692. 다솔이의 월급 상자 본문

SW Expert Academy

(SWEA c++)6692. 다솔이의 월급 상자

naeunchan 2020. 11. 19. 09:55
728x90
반응형

swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWdXofhKFkADFAWn&categoryId=AWdXofhKFkADFAWn&categoryType=CODE

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

간단하게 곱셈으로 풀 수 있는 문제.

ans는 무조건 0으로 초기화 하여 틀리지 않도록 하자..!

#include <iostream>
#include <cstdio>

using namespace std;

int main(void)
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    
    int t;
    cin >> t;
    
    for(int tc = 1; tc <= t; tc++)
    {
        int N;
        double p, x, ans = 0;
        
        cin >> N;
        
        for(int i = 0; i < N; i++)
        {
            cin >> p >> x;
            ans += (p * x);
        }
        
        printf("#%d %f\n", tc, ans);
    }
    return 0;
}
728x90
반응형