N

(SWEA c++)3431. 준환이의 운동관리 본문

SW Expert Academy

(SWEA c++)3431. 준환이의 운동관리

naeunchan 2020. 11. 9. 09:36
728x90
반응형

swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWE_ZXcqAAMDFAV2&categoryId=AWE_ZXcqAAMDFAV2&categoryType=CODE

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

이 문제는 if문 처리만 할 줄 알면 충분히 쉽게 풀 수 있는 문제~

#include <iostream>

using namespace std;

int main(void)
{
    int t;
    cin >> t;
    
    for(int tc = 1; tc <= t; tc++)
    {
        int L, U, X, ans;
        cin >> L >> U >> X;
        
        if(X >= L && X <= U)
            cout << "#" << tc << " " << 0 << endl;
        else if(X < L)
            cout << "#" << tc << " " << L - X << endl;
        else if(X > U)
            cout << "#" << tc << " " << -1 << endl;
    }
    return 0;
}
728x90
반응형