9 条题解

  • 0
    @ 2023-12-25 12:57:49

    #include<bits/stdc++.h> using namespace std; int main(){ int w,a,b,c,d; cin>>w; a=w/1000; b=w%1000/100; c=w%100/10; d=w%10; cout<<d<<c<<b<<a<<endl; return 0; }

    信息

    ID
    17
    时间
    1000ms
    内存
    256MiB
    难度
    1
    标签
    递交数
    180
    已通过
    120
    上传者