repo.or.cz
/
letusc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move to repo.or.cz
[letusc.git]
/
ch3
/
examples
/
exa16.c
blob
c5f456203785a8493f2d82fd6e2031f9d90897a5
1
#include<stdio.h>
2
3
int
main
()
4
{
5
6
int
i
,
j
;
7
for
(
i
=
1
;
i
<=
2
;
i
++)
8
{
9
for
(
j
=
1
;
j
<=
2
;
j
++)
10
{
11
if
(
i
==
j
)
12
continue
;
13
14
printf
(
"%d %d
\n
"
,
i
,
j
);
15
16
}
17
}
18
return
0
;
19
}