Learn to Code
John F. Dumas
contact me | resume | how it works | example programs | testimonials | main page

C# - Palindrome


► Problem Description: Write a c# program that reads in a list of words and then looks for palindromes created by combining two different words.


► Examples

'amoral'   + 'aroma'
'bar'      + 'crab'
'bosses'   + 'sob'
'cigar'    + 'tragic'
'delivery' + 'reviled'
'diaper'   + 'prepaid'
'drawer'   + 'reward'
'drawn'    + 'inward'
'drowsy'   + 'sword'
'maori'    + 'roam'
'murdered' + 'rum'
'never'    + 'even'
'nurses'   + 'run'
'otter'    + 'amaretto'
'partner'  + 'entrap'
'senile'   + 'pipelines'
'step'     + 'puppets'
'stressed' + 'desserts'
 

► Source Code

Visual Studio Project: zip file


Back to Example Program Index


© John F. Dumas | johnfdumas@gmail.com | main page | top of page