1. #import <Foundation/Foundation.h>
  2.  
  3. int main (int argc, const char * argv[])
  4. {
  5. NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
  6.  
  7. // insert code here...
  8.  
  9. int age, x;
  10. age = 18;
  11.  
  12. for (x = 1; x <= 10; x++)
  13. {
  14. if ( (age >= 18) && (age <= 25) )
  15. {
  16. NSLog(@"Probably is in University.");
  17. }
  18. else
  19. {
  20. NSLog(@"Probably not in University.");
  21. }
  22. }
  23.  
  24. [pool drain];
  25. return 0;
  26. }