Thursday, May 6, 2010

Hello World

public String start_blog()
{
String output = new String("Hello");
int x = 1 % 2;
output += " ";
if (x==1)
output += "World";
else
output +="Sky";
return output;
}

No comments:

Post a Comment