[BOJ] 2908번 상수 (C++)

Minju Kim·2023년 9월 30일
0
post-thumbnail
post-custom-banner

2908번 문제

2908번 문제

맞았습니다!

코드

#include <iostream>
#include <vector>
#include <string>

using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cout.tie(NULL);
    cin.tie(NULL);
    
    int a, b;
    cin >> a >> b;
    int na = 0, nb = 0;

    na += a / 100;
    a %= 100;
    na += (a / 10) * 10;
    a %= 10;
    na += a * 100;

    nb += b / 100;
    b %= 100;
    nb += (b / 10) * 10;
    b %= 10;
    nb += b * 100;

    if (na > nb) cout << na;
    if (na < nb) cout << nb;
    return 0;

}

profile
이화여자대학교 컴퓨터공학과 22 / 백엔드 개발자(가 되고싶음) / Spring Boot, Flutter, Python, Java, Data structure, etc
post-custom-banner

0개의 댓글