※ 글쓴이는 취미로 코딩을 익혀보는 사람이라 정확하지 않은 내용을 담고 있을 수 있다 ※
이번에 볼 문제는 백준 26530번 문제인 Shipping이다.
문제는 아래 링크를 확인하자.
https://www.acmicpc.net/problem/26530
26530번: Shipping
The first line will contain a single integer n that indicates the number of data sets that follow. Each data set will start with a single integer x denoting how many items follow. The next x lines consist of a string, and integer, and a floating point numb
www.acmicpc.net
각 테스트케이스마다 그 케이스에 속한 물품별 개수와 그 가격을 곱한 값들을 더한 값을 출력해 문제를 해결하자. 이는 반복문을 이용해 구현할 수 있다.
소수점 아래 두 자리까지 출력하는 것은 fixed와 cout.precision(2)를 통해 설정할 수 있다.
아래는 제출한 소스코드이다.
#include <iostream>
using namespace std;
typedef long double ld;
int T;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout << fixed;
cout.precision(2);
cin >> T;
while (T--) {
int N; cin >> N;
ld ans = 0;
while (N--) {
string s; ld n, p; cin >> s >> n >> p;
ans += n * p;
}
cout << '$' << ans << '\n';
}
}
728x90
'BOJ' 카테고리의 다른 글
[BOJ 26500 // C++] Absolutely (0) | 2022.12.19 |
---|---|
[BOJ 26575 // C++] Pups (0) | 2022.12.19 |
[BOJ 26489 // C++] Gum Gum for Jay Jay (0) | 2022.12.18 |
[BOJ 2773 // C++] 바깥 삼각형의 중심 (0) | 2022.12.18 |
[BOJ 26264 // C++] 빅데이터? 정보보호! (0) | 2022.12.18 |