mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
13 lines
296 B
Java
13 lines
296 B
Java
class OxfordBug {
|
|
private int f(int m, int n) throws Exception {
|
|
int i = 0;
|
|
while (i < n) {
|
|
i++;
|
|
<selection>if (i == m) {
|
|
n += m;
|
|
throw new Exception("" + n);
|
|
}</selection>
|
|
}
|
|
return n;
|
|
}
|
|
} |