2 条题解

  • 0
    @ 2025-3-21 20:33:36

    法海来发题解了

    #include <iostream>
    using namespace std;
    int main() {
        int a;
        cin >> a;
        int b = a / 100;
        int c = (a / 10) % 10;
        int d = a % 10;
        int r = d * 100 + c * 10 + b;
        cout << r << endl;
        return 0;
    }
    

    信息

    ID
    430
    时间
    1000ms
    内存
    64MiB
    难度
    7
    标签
    递交数
    58
    已通过
    14
    上传者