Small Grey Outline Pointer baekjoon c++ 10952 A+B
본문 바로가기
Dev./Algorithm Prac

baekjoon c++ 10952 A+B

by sso. 2022. 3. 20.
#include <stdio.h>
int main() {

	int a = 0, b = 0;
	
	while (1) {
		scanf("%d %d", &a, &b);

		if (a == 0 && b == 0) {
			break;
		}
		else {
			printf("%d\n", a + b);
		}
	}

}

<결과>

 

2 4
6
1 5
6
3 5
8
0 0

 

=> 0 0 을 입력하면 종료

728x90

'Dev. > Algorithm Prac' 카테고리의 다른 글

baekjoon c++ 11720 숫자의 합(문자열)  (0) 2022.03.25
baekjoon c++ 10951 A+B  (0) 2022.03.20
baekjoon c++ 10871 X보다 작은 수  (0) 2022.03.20
baekjoon c++ 2439 별찍기2  (0) 2022.03.20
baekjoon c++ 2438 별찍기1  (0) 2022.03.20

댓글