A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

package com.cn.test;

import java.util.Scanner;


public class HuiWenShuTest {
        public static void main(String[] args) {
                Scanner sc= new Scanner(System.in);
                System.out.println("请输入数字");
                int num=sc.nextInt();
                String str=test(num);
        }
       
        public static String test(int num){
                String str1=num+"";
                StringBuilder str2=new StringBuilder(str1);
                str2.reverse();
               
                int count=0;
                for(int i = 0; i < str1.length(); i++){
                        if(str1.charAt(i) !=str2.charAt(i)){
                                System.out.println(str1 + "不是回文数");
                                return "N";
                        }else{
                                count++;
                        }
                }
                if(count ==str1.length()){
                        System.out.println(str1 + "是回文数");
                        return "Y";
                }
                return "";
        }
}

输出结果:

请输入数字
123456
123456不是回文数

请输入数字
123454321
123454321是回文数
Y
---------------------
【转载,仅作分享,侵删】
作者:小志的博客
原文:https://blog.csdn.net/li1325169021/article/details/87980092
版权声明:本文为博主原创文章,转载请附上博文链接!

1 个回复

倒序浏览
奈斯,感谢分享
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马