Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.    int x, y, z;
  6.  
  7.    for (x = 0; x < 2; x++)
  8.    {
  9.       for (y = 0; y < 3; y++)
  10.       {
  11.          for (z = 0; z < 3; z++)
  12.          {
  13.             printf("%d %d %d\n", x, y, z);
  14.          }
  15.       }
  16.    }
  17.  
  18.    return 0;
  19. }
  20.  
  21. /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/
  22.