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
