p95_3.12
Posted cherrydream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了p95_3.12相关的知识,希望对你有一定的参考价值。
1 import java.util.Scanner; 2 public class Palindrome { 3 public static void main(String[] args){ 4 int a; 5 Scanner input = new Scanner(System.in); 6 System.out.println("Enter a three-dight integer: "); 7 a = input.nextInt(); 8 if((a/100)==(a%100%10)){ 9 System.out.println(a + " is a palindrome"); 10 } 11 else System.out.println(a + " is not a palindrome"); 12 } 13 }
以上是关于p95_3.12的主要内容,如果未能解决你的问题,请参考以下文章