Answers for "Program to print all palindromes in a given range"

C
0

Program to print all palindromes in a given range

#include<iostream>
using namespace std;
 
// A function to check if n is palindrome
int isPalindrome(int n)
{
    // Find reverse of n
    int rev = 0;
    for (int i = n; i > 0; i /= 10)
        rev = rev*10 + i%10;
 
    // If n and rev are same, then n is palindrome
    return (n==rev);
}
 
// prints palindrome between min and max
void countPal(int min, int max)
{
    for (int i = min; i <= max; i++)
        if (isPalindrome(i))
          cout << i << " ";
}
 
// Driver program to test above function
int main()
{
    countPal(100, 2000);
    return 0;
}
Posted by: Guest on March-20-2022

Code answers related to "Program to print all palindromes in a given range"

Code answers related to "C"

Browse Popular Code Answers by Language