Name: Anonymous 2012-10-16 12:55
that feel when your CS lecturer starts loops from 1 instead of 0.
class Main
{
public static void main( String args[] )
{
int i = 1;
while (i <= 5)
{
System.out.println("Hello world!");
}
}
}