Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Java by AhmeT ( 16 years ago )
public class helloMethod2
{//start helloMethod2
public static void main(String args[])
{//start main
String user = "Ahmet";
int yrs = 19;
int pies = 3;
whatsUp(user, yrs, pies);
}//end main
public static void whatsUp(String name, int age, int pita)
{
System.out.println("Djes ba, moje ime je " + name);
System.out.println("Ja sam evo neki dan napunio tacno " + age + " godina.");
System.out.println("Nekada sam igrao kosarku rekreativno, i dnevno jedem " + pita + " pite.");
System.out.println("Sta ima kod tebe?");
}
}//end of class helloMethod2
Revise this Paste