mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-03 15:50:52 +07:00
10 lines
175 B
Java
10 lines
175 B
Java
class C {
|
|
{
|
|
boolean hasThreeInverted = true;
|
|
for (int i = 1; i <= 5; i++) {
|
|
hasThreeInverted &= i != 3;
|
|
}
|
|
System.out.println(!hasThreeInverted);
|
|
}
|
|
}
|