保持逆转号码。 &安培;将它添加到原始编号。直到有回文数

时间:2017-02-25 19:14:08

标签: java palindrome call-by-value

它不是"找到一个数字的回文" !它有点扭曲:

步骤1:反转原始数字的数字。

步骤2:添加反转的数字。

步骤3:如果新号码是回文数,则打印输出。

限制是15步&我们可以打印原始数字,如果这是一个回文本身。我们必须在这个程序中使用函数调用。这里我使用了两个函数() - FIRST来反转数字& SECOND添加原始号码和反转号码&检查总和是否是回文。

如果我能以任何方式改进此长代码,请提出您的意见。

PS:Java和Java中的新手特别是函数调用!

谢谢!!这是代码,它有点长!对不起:(

import java.util.*;
public class PalindromicNumber
{
 public int PalinReverse(int n)
    {
     int n1=n;
     int x1=0, d1=0;
      while (n1>0)//just used to store the reverse of the original number
        {
          d1=n1%10;
          x1=(x1*10)+d1;
          n1=n1/10;
        }
    return x1;
     }

    public int PalinCheck (int n, int p)
      {
         int F=0;
         F=n+p; 
         int n1=F, x1=0, d1=0;

          while(n1>0)//checks if the sum of reversed no. and the original number is palindrome or not
           {
            d1=n1%10;
            x1=(x1*10)+d1;
            n1=n1/10;
           }
   if (x1==F)
       {
       System.out.println("The number"+ F +"is a Palindrome");
       return 1;
       }
   else 
       return F; //returns the sum if it is not a palindrome
    }

   public static void main (String args[])
     {
      Scanner sc=new Scanner(System.in);
      PalindromicNumber ob=new PalindromicNumber();

      System.out.println("Enter the original number");
      int n=sc.nextInt();

      int count=0;
      int n1=n, x1=0, d1=0;
        while(n1>0) //this checks if the original no. is a palindrome or not
           {
            d1=n1%10;
            x1=(x1*10)+d1;
            n1=n1/10;
           }

        if (x1==n)
        System.out.println("The original number="+n+"is a palindrome number");

        else

        for (count=0;count<15;count++)
           {
               int a=ob.PalinReverse(n);
               System.out.println("The reversed number is"+a);
               int b=ob.PalinCheck(n,a);
                if(b==1)
                {
                    System.out.println("The no. of steps it took was"count+1);
                    break;// the palindromic no. is now found out
                } 
                else 
                     n=b;//used to update the value of n
           }
    }
}

1 个答案:

答案 0 :(得分:0)

问题出在您的PalinReverse方法中。您的while循环无限运行,因为条件始终为真。

替换

while (n>0)

while (n1>0)

您还应该学习如何调试程序。之后你的生活将轻松10倍。