home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / PROGRAMM / CTUTOR.ZIP / SOURCE.ZIP / SHAWN.C < prev    next >
Text File  |  1992-05-06  |  236b  |  14 lines

  1. main ()
  2. {
  3. int a;
  4.  
  5. for (a = 1; a < 11; a = a+1) {
  6.  printf ("Shawn is Master Spy. %3d ",a);
  7.  if (a == 3){
  8.  printf ("Here is where a three goes!");}
  9.  if (a == 7){
  10.  printf ("Here is where a seven goes!");}
  11.  printf ("\n");
  12.  }
  13. }
  14.