555

P1307 [NOIP2011 普及组] 数字反转

千パーセント @ 2019-08-11 22:23:14

为什么我用字符串全WA了(现在用了其他的方法)

by    吾皇 @ 2019-08-11 22:23:38

..可能方法不对


by 詹詹tv__詹詹 @ 2019-08-11 22:37:03

你试试用函数吧,正负数分开讨论就可以了。


by JamesMessi @ 2019-08-21 11:14:38

#include<bits/stdc++.h>
using namespace std;
int a[1000];
int dao(int n){
    int s=0;
    while (n!=0){
        s=s*10+n%10;
        n=n/10;
    }
    return s;
}
int main(){
    int n;
    cin>>n;
    cout<<dao(n);
    return 0;
}

|