View Single Post
  #13   Spotlight this post!  
Unread 10-02-2009, 16:53
nate15810's Avatar
nate15810 nate15810 is offline
World's Most Clueless Programmer
FTC #0154 (154 Renegade)
Team Role: Programmer
 
Join Date: Jan 2009
Rookie Year: 2007
Location: Rhode Island
Posts: 22
nate15810 is an unknown quantity at this point
Re: [FTC]: Toggle controls

found this online, but i tried converting it and with my small ammount of programming knowledge, i didn't get very far

Code:
#include <stdio.h>
 
int main() {
     int x;
     for (x = 0; x < 10; x++) {
          if(x == 1 || x == 4 ) {
               continue;
          }
          else if(x == 8) {
               break;
          }
          else {
               printf("x = %d", x);
          }
     }
 
     return (1);
}
Reply With Quote