/*By Aderibigbe Akeem Adebayo
*
* When my lecturer gave me a punishment to write "I won't disturb the class again!" 1000 times and submit
* the next day,I submitted this code the next 2 mins.
*
* Lecturer: What is this???
* Me: Programmers think differently. :)
*
* vanbayor.blogspot.com
*/
public class Disturb {
public static void main(String[]args) {
int n;
for(n=1; n<=1000; n++)
System.out.println("I won't disturb the class again!");
}
}
No comments:
Post a Comment