Skip to content

Instantly share code, notes, and snippets.

@error454
Last active December 25, 2015 02:59
Show Gist options
  • Save error454/6906759 to your computer and use it in GitHub Desktop.
Save error454/6906759 to your computer and use it in GitHub Desktop.
Birthday Code
public String doTheMagic(String person, int age){
int randomNumber = 2;
age *= randomNumber;
if(person = null){
person = "Horrible Person";
}
boolean isTheirBirthday = true;
String itsYourBirthday = "Happy Birthday " + person + "! You don't look a day over " + age + "!";
String itsNotYourBirthday = "The cake is not a lie, but you don't get any anyways";
return isTheirBirthday ? itsYourBirthday : itsNotYourBirthday;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment