관리 메뉴

Kim's Programming

2029. 몫과 나머지 출력하기 본문

SW ExpertAcademy/D1

2029. 몫과 나머지 출력하기

Programmer. 2018. 11. 30. 21:35

2029. 몫과 나머지 출력하기

문제출처:https://www.swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5QGNvKAtEDFAUq&categoryId=AV5QGNvKAtEDFAUq&categoryType=CODE




풀이 방법



<코드>


#include <iostream>

int main()
{
    int inputCase {0};
    std::cin>>inputCase;
    
    for(int i=1;i<=inputCase;i++)
    {
        int input1{0},input2{0};
        std::cin>>input1>>input2;
        std::cout<<"#"<<i <<" "<<input1/input2<<" "<<input1%input2<<"\n";
    }
    
    return 0;
}

'SW ExpertAcademy > D1' 카테고리의 다른 글

2046. 스탬프 찍기  (0) 2018.11.30
2043. 서랍의 비밀번호  (0) 2018.11.30
2027. 대각선 출력하기  (0) 2018.11.30
2025. N줄덧셈  (0) 2018.11.30
1938. 아주 간단한 계산기  (0) 2018.11.30