Answer:
#include <bits/stdc++.h>
using namespace std;
bool isPalindrome(string str)
{
char a,b;
int length = str.length();
for (int i = 0; i < length / 2; i++)
{
a=tolower(str[i]);//Converting both first characters to lowercase..
b=tolower(str[length-1-i]);
if (b != a )
return false;
}
return true;
}
int main() {
string t1;
cin>>t1;
if(isPalindrome(t1))
cout<<"The string is Palindrome"<<endl;
else
cout<<"The string is not Palindrome"<<endl;
return 0;
}
Output:-
Enter the string
madam
The string is Palindrome
Enter the string
abba
The string is Palindrome
Enter the string
22
The string is Palindrome
Enter the string
67876
The string is Palindrome
Enter the string
444244
The string is not Palindrome
Explanation:
To ignore the cases of uppercase and lower case i have converted every character to lowercase then checking each character.You can convert to uppercase also that will also work.
You should follow a set of directions
A third party cookie can stay in your hard drive or browsing files, and record all the action
Hope this helps.
If you are hired to develop a system, note that Is it vital to follow all the requests or needs of the system's owner.
The company knows what they want and it is good you do comply with their directives. You can only give your suggestions if need be.
<h3>Who can develop an information system?</h3>
The information systems field is one that is made up of people in organizations that are skilled and can design and build information system.
Note that to be hired to develop a system, one has to follow all the requests/wants of the system owner instead of the system user as the one who needs it knows what he or she wants so you have to comply with it. You can only give your suggestions.
Learn more about system from
brainly.com/question/13603602
Answer:
A Fraud Attack(or scam :D)
Explanation:
EZ answers friend and put THANKS in my profile