STEVE'S CODE
A meeting of the minds, a gathering of geniuses, and a plethora of confusing spreadsheets.
Attendees:
- Steve (The Architect)
- Jerry (The Accountant)
- Tina (The UX Guru)
- Bob (The IT Specialist)
public class Meeting {
private boolean isUseless = true;
private int minutesWasted = 0;
private String[] topics = ["The Importance of Proper Coffee", "The Art of Procrastination", "The Science of Napping"];
private String[] attendees = ["Steve", "Jerry", "Tina", "Bob"];
private String[] notes = ["Steve: 'We must have more meetings', 'I love meetings'", "Jerry: 'I'm bored, can we go get some coffee'", "Tina: 'I'm a UX expert, don't you know?', 'This meeting is a success!'" ];
public static void main(String[] args) {
while (isUseless) {
for (int i = 0; i < 5; i++) {
minutesWasted++;
for (int j = 0; j < topics.length; j++) {
System.out.println(topics[j]);
}
}
for (int i = 0; i < attendees.length; i++) {
System.out.println(attendees[i]);
}
for (int i = 0; i < notes.length; i++) {
System.out.println(notes[i]);
}
isUseless = false;
}
}
}