본문 바로가기
알고리즘/백준 문제 풀이

[BOJ/백준] 11021번 A + B - 7 - [c/c++] 풀이

by 미니상미니 2022. 10. 10.
반응형

https://www.acmicpc.net/problem/11021

 

11021번: A+B - 7

각 테스트 케이스마다 "Case #x: "를 출력한 다음, A+B를 출력한다. 테스트 케이스 번호는 1부터 시작한다.

www.acmicpc.net

 

 

 

 


  • 문제

단계별로 풀어보기 - 반복문 - [6단계] 11021번


해설

간단한 반복문 문제이다.

 

코드

c

#include <stdio.h>

int main() {

    int t;
    int a, b;

    scanf("%d", &t);

    for (int i = 1; i <= t; i++) {
        scanf("%d %d", &a, &b);
        printf("Case #%d: %d \n", i, a + b);
    }

    return 0;
}

 

c++

#include <iostream>

using namespace std;

int main() {

    int t;
    int a, b;
    cin >> t;

    for (int i = 1; i <= t; i++) {
        cin >> a >> b;
        cout << "Case #" << i << ": " << a + b << '\n';
    }

    return 0;
}

 

 

 

 

 

반응형

댓글