3 条题解

  • 1
    @ 2025-8-19 9:23:50
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int n;
        cin>>n;
        int t1=n%10;
        int t2=n/10%10;
        int t3=n/100;
        cout<<t1*100+t2*10+t3;
        return 0;
    }
    

    信息

    ID
    198
    时间
    1000ms
    内存
    128MiB
    难度
    1
    标签
    递交数
    1288
    已通过
    356
    上传者