1 条题解

  • 4
    @ 2022-9-16 17:13:24
    • 对于 int n;
      • n 的个位:n%10
      • n 去掉个位后的数:n/10
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        int n;
        cin >> n;
        cout << n % 10 
             << n / 10 % 10
             << n / 100 % 10;
        return 0;
    }
    

    当然你也可以直接读入三个 char 来处理。

    • 1

    信息

    ID
    261
    时间
    1000ms
    内存
    128MiB
    难度
    2
    标签
    (无)
    递交数
    197
    已通过
    120
    上传者