Java回文数字一句话搞定

阅读更多
如何判断回文数字,如:121,52025,9229;
就是倒过来还等于原来的。
public class TestStr {

	
	public static void main(String[] args) throws IOException {
		
		String strNum = "";
		
		strNum = JOptionPane.showInputDialog("请输入数字");
				
		boolean b = getNum(strNum);
		
		if (b) {
			System.out.println(strNum+"是回文数字");
		} else {
			System.out.println(strNum+"不是回文数字");
		}
		
	}
	
	public static boolean getNum(String strNum) {
		
			
		return new StringBuffer(strNum).reverse().toString().equalsIgnoreCase(strNum);
	}
	
	
}

你可能感兴趣的:(java)