home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Java by Example
/
jbecd.bin
/
JBE-CD
/
JavaByExample
/
chap13
/
lst13_8.txt
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-02-13
|
110 b
|
9 lines
for (int x=0; x<3; ++x)
{
for (int y=0; y<3; ++y)
{
table[x][y] = x + y * 4;
}
}