In this article, I am going to discuss the Palindrome Program in C# with some examples. Please read our previous article where we discussed the Prime Number Program with some examples. This is one of the interview questions asked in the interview to write the logic to check whether a number or string is a palindrome or not. As part of this article, we are going to discuss the following pointers.
A Palindrome number is a number that is going to be the same after reversing the digits of that number. For example, the numbers such as 121, 232, 12344321, 34543, 98789, etc. are the palindrome numbers.
How to check if a given number is Palindrome or not?
Algorithm to check Palindrome Number in C#:
How to check if a given string is Palindrome or not in C#?
In the following program, we take the string as an input from the console. Then we reverse the string using for loop and storing the reverse string value in the reverse variable. Finally, we check whether the original and reverse values are the same or not. If both are same then the string is Palindrome else it is not Palindrome.
Using the for-each loop:
Let us see how to do the previous program using a for each loop.
Another Approach:
In the following example, first, we convert the string to a character array. Then using the Array class Reverse method we are reversing the elements of the character array. Once we reverse the elements of the character array, then we create a string from this array. Finally, we are comparing this newly created string with the original string and printing it is Palindrome if both the strings are the same else we are just printing it is not Palindrome.
That’s it for today. Here, in this article, I try to explain the different ways to check whether a number or a string is Palindrome or not using C#. In the next article, I am going to discuss how to reverse a number and a string in C# with some examples.
Summary:
I hope this post will be helpful to write a Palindrome Program in C# with Examples
Please share this post with your friends and colleagues.
For any queries please post a comment below.
Happy Coding 😉
- What is Palindrome?
- How to check if a given number is Palindrome or not?
- How to check if a given string is Palindrome or not?
A Palindrome number is a number that is going to be the same after reversing the digits of that number. For example, the numbers such as 121, 232, 12344321, 34543, 98789, etc. are the palindrome numbers.
How to check if a given number is Palindrome or not?
Algorithm to check Palindrome Number in C#:
- First, get the number from the user which you check
- Hold that number in a temporary variable
- Reverse that number
- Compare the temporary number with the reversed number
- If both numbers are same, then print it is palindrome number else print it is not a palindrome number
using System; namespace LogicalPrograms { public class Program { static void Main(string[] args) { Console.Write("Enter a Number To Check Palindrome : "); int number = int.Parse(Console.ReadLine()); int remineder, sum = 0; int temp = number; while (number > 0) { //Get the remainder by dividing the number with 10 remineder = number % 10; //multiply the sum with 10 and then add the remainder sum = (sum * 10) + remineder; //Get the quotient by dividing the number with 10 number = number / 10; } if (temp == sum) { Console.WriteLine($"Number {temp} is Palindrome."); } else { Console.WriteLine($"Number {temp} is not Palindrome"); } Console.ReadKey(); } } }Output:
How to check if a given string is Palindrome or not in C#?
In the following program, we take the string as an input from the console. Then we reverse the string using for loop and storing the reverse string value in the reverse variable. Finally, we check whether the original and reverse values are the same or not. If both are same then the string is Palindrome else it is not Palindrome.
using System; namespace LogicalPrograms { public class Program { static void Main(string[] args) { Console.Write("Enter a string to Check Palindrome : "); string name = Console.ReadLine(); string reverse = string.Empty; for (int i = name.Length - 1; i >= 0; i--) { reverse += name[i]; } if (name == reverse) { Console.WriteLine($"{name} is Palindrome."); } else { Console.WriteLine($"{name} is not Palindrome"); } Console.ReadKey(); } } }Output:
Using the for-each loop:
Let us see how to do the previous program using a for each loop.
using System; namespace LogicalPrograms { public class Program { static void Main() { Console.Write("Enter a string to Check Palindrome : "); string name = Console.ReadLine(); string reverse = string.Empty; foreach (char c in name) { reverse = c + reverse; } if (name.Equals(reverse, StringComparison.OrdinalIgnoreCase)) { Console.WriteLine($"{name} is Palindrome"); } else { Console.WriteLine($"{name} is not Palindrome"); } Console.ReadKey(); } } }Output:
Another Approach:
In the following example, first, we convert the string to a character array. Then using the Array class Reverse method we are reversing the elements of the character array. Once we reverse the elements of the character array, then we create a string from this array. Finally, we are comparing this newly created string with the original string and printing it is Palindrome if both the strings are the same else we are just printing it is not Palindrome.
using System; namespace LogicalPrograms { public class Program { static void Main() { Console.Write("Enter a string to Check Palindrome : "); string name = Console.ReadLine(); char[] nameArray = name.ToCharArray(); Array.Reverse(nameArray); string reverse = new string(nameArray); if (name.Equals(reverse, StringComparison.OrdinalIgnoreCase)) { Console.WriteLine($"{name} is Palindrome"); } else { Console.WriteLine($"{name} is not Palindrome"); } Console.ReadKey(); } } }Output:
That’s it for today. Here, in this article, I try to explain the different ways to check whether a number or a string is Palindrome or not using C#. In the next article, I am going to discuss how to reverse a number and a string in C# with some examples.
Summary:
I hope this post will be helpful to write a Palindrome Program in C# with Examples
Please share this post with your friends and colleagues.
For any queries please post a comment below.
Happy Coding 😉
0 comments:
Post a Comment
If you like this website, please share with your friends on Facebook, Twitter, LinkedIn.