2f5a46681e
git-svn-id: http://picoc.googlecode.com/svn/trunk@179 21eae674-98b7-11dd-bd71-f92a316d2d60
13 lines
189 B
C
13 lines
189 B
C
int x, y, z;
|
|
|
|
for (x = 0; x < 2; x++)
|
|
{
|
|
for (y = 0; y < 3; y++)
|
|
{
|
|
for (z = 0; z < 3; z++)
|
|
{
|
|
printf("%d %d %d\n", x, y, z);
|
|
}
|
|
}
|
|
}
|