mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-28 00:40:07 +08:00
13 lines
181 B
C
13 lines
181 B
C
|
void foo(int x, int y)
|
||
|
{
|
||
|
if ((x*x - y*y > 0) ||
|
||
|
(x == 1 || y == 1) &&
|
||
|
(x != 2 && y != 2)
|
||
|
) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
int z = (x + y) *
|
||
|
(x - y);
|
||
|
}
|