[백준]10952번 A+B -5 c/c++
·
개발/백준 & 프로그래머스
문제 https://www.acmicpc.net/problem/10952 나의 해결방법 a와 b가 0일때 while문 break해서 빠져나온다. #include using namespace std; int main() { int a, b; while (1) { cin >> a >> b; if (a == 0 && b == 0) { break; } cout