Thread: C Foxtrot Comic
View Single Post
Old 10-09-2003, 03:16 AM   #26 (permalink)
krazykemist
Psycho
 
Location: New Orleans
A little different but would this work as well?

Code:
#include <stdio.h>
 main()
  {int count; count=1; while (count <= 500)
    {++count;printf("I will not throw paper airplanes in class.\n");
    }
  return 0;
  }

Had to edit to make the include show up
__________________
"Everyone thinks of changing the world, but no one thinks of changing himself." -- Tolstoy

Last edited by hrdwareguy; 10-09-2003 at 04:20 AM..
krazykemist is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62