>>110
for (int i = 0;;) {
System.out.println(i);
i++;
if (i >= 10) {
break;
}
}
こうですね