BOJ 문제풀이

백준 11022번 C언어 풀이

koreasunoo 2021. 7. 9. 15:25
SMALL

안녕하세요 오늘은 다른 문제와 다르게 Case #와 %d + %d를 출력해야하는 문제를 풀어보겠습니다.

 

코드:

#include <stdio.h>
int main(){
    int a;
    scanf("%d",&a);
    for(int i = 0; i<a; i++){
        int c1, c2;
        scanf("%d %d",&c1,&c2);
        printf("Case #%d: %d + %d = %d\n",i+1,c1,c2,c1+c2);
    }
    return 0;
}

 

LIST

'BOJ 문제풀이' 카테고리의 다른 글

백준 2439번 C언어 풀이  (0) 2021.07.09
백준 2438번 C언어 풀이  (0) 2021.07.09
백준 1002번 C 언어 풀이  (0) 2021.07.08
백준 2775번 C언어 풀이  (0) 2021.07.08
백준 10171번 파이썬 풀이  (0) 2020.07.13