integer palindrome in java
public boolean isPalindrome(int x) {
String str = Integer.toString(x);
String reverse = new StringBuilder(str).reverse().toString();
return str.equals(reverse)?true:false;
}
integer palindrome in java
public boolean isPalindrome(int x) {
String str = Integer.toString(x);
String reverse = new StringBuilder(str).reverse().toString();
return str.equals(reverse)?true:false;
}
palindrome in java
package com.candidjava; import java.util.Scanner; public class PalindromeUptoN{ public static void main(String[] args) { int n, b, rev = 0; Scanner sc = new Scanner(System.in); System.out.println("Enter the Palindrome No N:"); int N = sc.nextInt(); System.out.print("Palindrome numbers from 1 to N:"); for (int i = 1; i <= N; i++) { n = i; while (n > 0) { b = n % 10; rev = rev * 10 + b; n = n / 10; } if (rev == i) { System.out.print(i + " "); } rev = 0; } } }
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us