Posteos etiquetados navidad
feliz(”Navidad”) & prospero(2010)
Dic 23
public class BestDesires {
public BestDesires() {
List<ContactEntryt> people = getAllPeople(Planets.World);
for(ContactEntry person : people) {
String occupation = person.getOccupation();
if( person.isGoodPerson() && !( occupation.equals("politic") || occupation.equals("banker") ) ) {
System.out.println( person.getName() + ", I wish you a Merry Christmas and a happy new Year.");
}
}
}
}

