intermediate/MyNumber

From ggc

Jump to: navigation, search

01 package intermediate;
02 
03 
04 /**
05  * All about my helper class.
06  @author My Name Here
07  */
08 public class MyNumber
09 {
10    private int x;
11 
12    public MyNumber(int xx)
13    {
14       x=xx;
15    }
16 
17    public String getDescription()
18    {
19       if(x%2==0)
20          return "Even";
21       else
22          return "Odd";
23    }
24 }


Download/View intermediate/MyNumber.java




Views
Personal tools
Add to 
del.icio.usAdd to 
diggAdd to 
FacebookAdd to 
favoritesAdd to 
GoogleAdd to 
MySpaceAdd to 
PrintAdd to 
SlashdotAdd to 
StumbleUponAdd to 
Twitter