Difference between revisions of "Week 5"

From CompSciWiki
Jump to: navigation, search
Line 1: Line 1:
 
{{1010PrAD
 
{{1010PrAD
  
|ProblemName=<pre>
+
|ProblemName=
Complete the program Palindrom below that checks if a word is palindrome.
+
<pre>Complete the program Palindrom below that checks if a word is palindrome.
 
If the word is palindrome, print out "It's a palindrome." using System.out.println().
 
If the word is palindrome, print out "It's a palindrome." using System.out.println().
 
Otherwise, print out reversed order of the word.
 
Otherwise, print out reversed order of the word.

Revision as of 00:10, 2 April 2010

Back to the Program-A-Day homepage

Problem

The problem

 

...by students

float
Taken from http://www.flickr.com/photos/daniello/565304023/

An image or By Students section

Solution

The solution...

Code

Solution Code

Back to the Program-A-Day homepage