VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



'Program for finding Palindrome with few lines of code.

by Ahamed Saifudeen (11 Submissions)
Category: String Manipulation
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Fri 19th March 2004
Date Added: Mon 8th February 2021
Rating: (1 Votes)

'Program for finding Palindrome with few lines of code.

Rate 'Program for finding Palindrome with few lines of code.



a=InputBox("Enter the String:")
b=StrRev(a)
If a=b then
Msgbox "Given String is a Palindrome"
Else
Msgbox "Given String is not a Palindrome"
Endif
End Sub

Download this snippet    Add to My Saved Code

'Program for finding Palindrome with few lines of code. Comments

No comments have been posted about 'Program for finding Palindrome with few lines of code.. Why not be the first to post a comment about 'Program for finding Palindrome with few lines of code..

Post your comment

Subject:
Message:
0/1000 characters