为什么我只有二十分?

P1307 [NOIP2011 普及组] 数字反转

梁仲基666666 @ 2016-08-26 23:48:17

#include<iostream>
#include<cstdio>
using namespace std;
int main()
{
    int m,n;
    scanf("%d",&n);
    m=(n%10)*100+(n/10%10)*10+(n/100);
    cout<<m<<endl;
    return 0;
}
为什么不对啊,只有20分?

by w_y_c @ 2016-08-27 10:26:57

谁说一定是三位数啊=。=


by cp2829302544 @ 2016-09-17 10:29:36

-1,000,000,000≤ N≤ 1,000,000,000 。


|