Perform automated and live-interactive testing on 3000+ real desktop and mobile devices online.
Palindrome numbers are numbers that read the same backward and forwards.
For example: 272, 515, 71417
Here is a Java program that checks whether the given number is palindrome or not.
import java.util.Scanner;
public class Reverse {
public static void main(String[] args) {
System.out.println("Enter a string you want to reverse:");
Scanner sc = new Scanner(System.in);
String str = sc.nextLine();
String rev = "";
for (int i = str.length() - 1; i >= 0; i--) {
rev = rev + str.charAt(i);
}
System.out.println("Reversed String:");
System.out.println(rev);
}
}
Test your websites, web-apps, or mobile apps seamlessly with LambdaTest.
Start Free TestingEarn resume-worthy Selenium certifications that help you land a top job.
Learn MoreTest orchestration and execution cloud of 3000+ browsers and OS
24/7 support
Enterprise grade security
Fastest test execution cloud