int Alu;
++Alu;
switch (Alu){
case 1:
System.out.println("LOOOOL");
break;
case 5:
System.out.println("Hai");
break;
case 10:
System.out.println("Omnomnom");
break;
default:
System.out.print("Meh");
break;
}
Simplest little bit of code I could think of. The last output print is actually "print" because it doesn't need to go onto the next line.
If someone can tell me how to put in some sort of repeating interval that would be great, I only know the basics.