Short Cake
8PM - Animal Crossing Wild World

사생활 보호 설정

https://gamjia.tistory.com

Mini Rooms

  • 내 미니룸
  • 미니미설정
  • 미니룸설정
  • 답글수 [0]

What Friends Say

한마디로 표현해봐~

1촌평 관리

10952번 A+B -5

GamJia 2023. 3. 22. 09:10

단계별로 풀어보기 - 반복문 - 11단계

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

#include <iostream>
using namespace std;
int main()
{
    int A,B;
    
    do
    {
        cin>>A>>B;
        if((A==0)&&(B==0))
        {
            break;
        }
        cout<<A+B<<endl;        
    }while((A!=0)&&(B!=0));
    
    return 0;    
}

 

'BaekJoon' 카테고리의 다른 글

2562번 최댓값  (0) 2023.03.24
10951번 A+B -4  (0) 2023.03.22
2439번 별 찍기 -2  (0) 2023.03.22
2438번 별 찍기 -1  (0) 2023.03.22
11022번 A+B -8  (0) 2023.03.22