1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | import java.util.*; public class Palindrome { public static void main(String args[]) throws Exception { String original, reverse = ""; Scanner in = new Scanner(System.in); System.out.println("Enter a string to check if it is a palindrome"); original = in.nextLine(); int length = original.length(); for (int i = length - 1; i >= 0; i--) reverse = reverse + original.charAt(i); if (original.equals(reverse)) System.out.println("The string is a palindrome."); else System.out.println("The string isn't a palindrome."); } } |
Home
/
Programs
/
WAP to create a function reverse() which returns reverse of an integer. Use this function in main() to check whether a given string is palindrome or not.
WAP to create a function reverse() which returns reverse of an integer. Use this function in main() to check whether a given string is palindrome or not.
Most Popular
-
* This is an Example Q1)Why are you applying for Financial Aid? - I am in my second year of B.E in college in India. I ...
-
COURSERA FINANCIAL AID ANSWERS * This is an Example 1st ) I’m a student from India and want to learn Machine Learning. I think it...
-
HALF Adder Behavioral entity halfaddbehav is Port ( A : in STD_LOGIC; B : in STD_LOGIC; SUM ...
-
Requirements for Sign-In webpage: HTML CSS PHP MySQL Xampp/Wamp server Using HTML to design the Sign-In webpage: First of all we...
-
view_items.php?id= home.php?cat= item_book.php?CAT= www/index.php?page= schule/termine.php?view= goods_detail.php?data= storemanager...
-
Click this link for Course of Google https://learndigital.withgoogle.com/digitalunlocked/courses
-
Xampp /WAMP stands for Windows, Apache, MySQL and any one of PHP, Perl or Python. WAMP server is a local webserver for running the scripti...
-
Method 1 Connecting to a Server 1 Create a new PHP file on your web server, and open it in your favorite text editor. ...
-
# SHA-256 Cryptographic Hash Algorithm # ** For Encryption & Decryption ** ( http://md5decrypt.net/en/Sha256/#answer ...