leetcode上报runtime error,,eclipse正确输出,何解?
public class Solution { public int reverse(int x) { StringBuffer s; String xs = java.lang.Math.abs(x) + ""; s = new StringBuffer(xs); int a; if(x>0){ a = Integer.parseInt(s.reverse().toString()); }else{ a = Integer.parseInt(("-"+s.reverse()).toString()); } return a; }} |
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|
|
|
|