star皆空


私信TA

用户名:a1843614327

访问量:2068

签 名:

等  级
排  名 813
经  验 3670
参赛次数 3
文章发表 19
年  龄 20
在职情况 学生
学  校 大庆师范学院
专  业 软件工程

  自我简介:

解题思路:

注意事项:

import java.util.Scanner;


public class Demo1201 {

public static void main(String[] args) {

Scanner scanner = new Scanner(System.in);

while (scanner.hasNext()) {

int n = scanner.nextInt();

while (n-- > 0) {

int m = scanner.nextInt();

int sum = 0;

int step = 0;

while (true) {

int c = reverse(m);

m += c;

if (ishuiwen(m)) {

step++;

System.out.println(step);

break;

}

step++;

if (step > 8) {

System.out.println("0");

break;

}

}

}

}


}


//写一个将数字返回为一个反转数字的方法

public static int reverse(int a) {

String string = a + "";

String temp = "";

for (int i = string.length() - 1; i >= 0; i--) {

temp += string.charAt(i);

}

return Integer.parseInt(temp);

}


//写一个判断是否是回文数的方法

public static boolean ishuiwen(int a) {

String string = a + "";

String temp = "";

for (int i = string.length() - 1; i >= 0; i--) {

temp += string.charAt(i);

}

if (string.equals(temp)) {

return true;

} else {

return false;

}

}

}


 

0.0分

0 人评分

  评论区

  • «
  • »