2020-03-02 02:52:41 +04:00

10 lines
120 B
Plaintext

_ f(int a, int x) {
int y = 0;
int z = 0;
while ((y = x * x) > a) {
x -= 1;
z = 1;
}
return (y, z);
}