Ask your own question, for FREE!
Computer Science 17 Online
OpenStudy (anonymous):

ALGORITM FOR TO CHECK PALINDROME OR NOT

OpenStudy (anonymous):

the main algo to check palindrome is inside the while loop :)

OpenStudy (anonymous):

#include<stdio.h> #include<conio.h> main() { int a[10],num,i=0,result=0,n; printf("Enter a number"); scanf("%d",&n); num=n; while(num!=0) { result=result*10; a[i]=num%10; num=num/10; result=result+a[i]; i++; } if(result==n) printf("Number is a palindrome"); else printf("Not a palindrome"); getch(); }

OpenStudy (anonymous):

def isPalindrome(word): if type(word) is not string: word=str(word) word=word.upper() if word==word[::-1]: return True else: return False Then, call isPalindrome for your word, isPalindrome("Racecar")=True

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Latest Questions
Breathless: Spooky witch but cute
3 hours ago 3 Replies 0 Medals
Arriyanalol: help
3 hours ago 10 Replies 2 Medals
Arriyanalol: @tinydinoUwU stop trying to find a argument u blad lil boy
1 day ago 5 Replies 3 Medals
Jaded012023: Please tell me what you all think of this song
6 hours ago 6 Replies 1 Medal
Arriyanalol: bro how
6 hours ago 2 Replies 3 Medals
Arriyanalol: cant wait for the new bluey movie in 2027
1 day ago 12 Replies 2 Medals
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!