全部评论 1

  • 其实这样就行了

    #include<bits/stdc++.h>
    using namespace std;
    int x;
    int main()
    {
        cin>>x;
        while(x!=0){
            cout<<x%10;
            x/=10;
        }
        return 0;
    }
    

    1周前 来自 浙江

    0
暂无数据

提交答案之后,这里将显示提交结果~

首页