1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-02-13 03:32:22 +00:00
ton/crypto/func/auto-tests/tests/a10.fc
2022-09-23 16:27:18 +03:00

17 lines
283 B
Text

_ main(int a, int x) {
int y = 0;
int z = 0;
while ((y = x * x) > a) {
x -= 1;
z = 1;
}
return (y, z);
}
{-
method_id | in | out
TESTCASE | 0 | 101 15 | 100 1
TESTCASE | 0 | 101 14 | 100 1
TESTCASE | 0 | 101 10 | 100 0
TESTCASE | 0 | 100 10 | 100 0
-}