摘要: import java.util.HashMap; import java.util.Map; public class RomanToInt13 { public static int romanToInt(String s) { int sum=0; int i=0; Map<Character 阅读全文
posted @ 2020-06-07 15:13 lalalalatxx 阅读(89) 评论(0) 推荐(0) 编辑
摘要: public class Palindrome_Number9 { public static boolean isPalindrome(int x) { if(x<0){ return false; } String result=new Integer(x).toString(); for(in 阅读全文
posted @ 2020-06-07 14:18 lalalalatxx 阅读(106) 评论(0) 推荐(0) 编辑