View Single Post
  #13   Spotlight this post!  
Unread 07-10-2003, 19:17
SeanCassidy's Avatar
SeanCassidy SeanCassidy is offline
Antiregistered User
#0263 (Aftershock)
Team Role: Programmer
 
Join Date: Oct 2003
Location: Holtsville, NY
Posts: 37
SeanCassidy is an unknown quantity at this point
Or you could have it just enough so that three lines fit and then throw in a newline like so:

Code:
#include <cstdio>
using namespace std;

main()
{
     int i = 0, n = 0;     

     while( i < 500 )
     {
        printf("I will not throw paper airplanes in class.");
        i++;
        n++;
        if( n == 3)
        {
           printf("\n");
           n = 0;
        }
     }
     return 0;
}
Shows how much free time I have. Hehe
Reply With Quote