加油鸭


私信TA

用户名:2452311021

访问量:8391

签 名:

等  级
排  名 945
经  验 3442
参赛次数 0
文章发表 15
年  龄 0
在职情况 学生
学  校 武城院
专  业

  自我简介:

还在读书的代码dog

import java.util.Scanner;


public class Main1 {

public static void main(String[] args) {

Scanner sc = new Scanner(System.in);

int x = sc.nextInt();

int temp = 0;

int n = x;

do {

temp = temp * 10 + x % 10;

x /= 10;

} while (x > 0);

if (n == temp) {

System.out.println("YES");

} else {

System.out.println("NO");

}

}

}


 

0.0分

2 人评分

  评论区

  • «
  • »