public class Inc {
static int x = 0;
static boolean ok = true;
static boolean f() {
x++;
return (ok = !ok);
}
public static void main(String[] args) {
if (f()||f()|f()) {
for (int i=0; i<x; i++)
System.out.println("Hello");
}
}
}
Ввійдіть щоб вподобати
Ввійдіть щоб прокоментувати