![[C++] 백준 3단계 - 11021번 문제](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdna%2FrzhL8%2Fbtr5QoorcS5%2FAAAAAAAAAAAAAAAAAAAAAG4qrXuhaNlN8BpsDD7ki0mqTk4er00RNF5_iPB5UkVo%2Fimg.png%3Fcredential%3DyqXZFxpELC7KVnFOS48ylbz2pIh7yKj8%26expires%3D1753973999%26allow_ip%3D%26allow_referer%3D%26signature%3DPyCdKpbbij8t%252FSwHUY5%252Bti8pRiQ%253D)
[C++] 백준 3단계 - 11021번 문제자료구조 & 알고리즘/BOJ2023. 3. 26. 15:31
Table of Contents
문제설명
소스코드
#include<iostream>
using namespace std;
int main()
{
int input; int A; int B;
cin >> input;
for (int i = 1; i <= input; ++i)
{
cin >> A >> B;
cout << "Case #" << i << ": " << A + B << endl;
}
}
'자료구조 & 알고리즘 > BOJ' 카테고리의 다른 글
[C++] 백준 3단계 - 2438번 문제 (0) | 2023.03.27 |
---|---|
[C++] 백준 3단계 - 11022번 문제 (0) | 2023.03.26 |
[C++] 백준 3단계 - 15552번 문제 (0) | 2023.03.26 |
[C++] 백준 3단계 - 25314번 문제 (0) | 2023.03.23 |
[C++] 백준 3단계 - 25304번 문제 (0) | 2023.03.22 |