mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-27 12:20:04 +08:00
13 lines
181 B
C
Vendored
13 lines
181 B
C
Vendored
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);
|
|
}
|