回文数的判断与生成
Posted fengxia
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了回文数的判断与生成相关的知识,希望对你有一定的参考价值。
判断是不是回文数
12321 1221
public static void PJ() {
Scanner sc = new Scanner(System.in);
System.out.println("请输入一个整数:");
int num = sc.nextInt();
String s = num+"";
String s1 ="";
for (int i = s.length()-1; i>=0; i--) {
s1+=s.charAt(i);
}
if (s.equals(s1)) {
System.out.println("是回文数");
}else {
System.out.println("不是回文数");
}
}
生成回文数
public static void generate() {
Scanner sc = new Scanner(System.in);
System.out.println("请输入一个整数:");
int num = sc.nextInt();
String s = num+"";
String s1="";
for (int i = s.length()-1; i>=0; i--) {
s1+=s.charAt(i);
}
System.out.println("它的回文数是"+s1);
}
以上是关于回文数的判断与生成的主要内容,如果未能解决你的问题,请参考以下文章