write a program to print all palindrome numbers from 1 to 100 using the function overloading process
Answers
Answered by
8
Answer:
#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;
}
Similar questions
Business Studies,
4 months ago
Physics,
4 months ago
English,
4 months ago
Math,
8 months ago
Math,
8 months ago
Political Science,
11 months ago
Geography,
11 months ago
English,
11 months ago