for, :
for(initialization; condition; inc/dec/divide..)
: for (initialization; Inc & check; nothing)
?: for(some blaBla; any Bla; some, more, bla)
. - , . some blaBla !
:
:
for (int x = 1; x++ < 10;)
{
System.out.println(x);
}
2..10? :
for (int x = 1; ++x < 10;)
{
System.out.println(x);
}
2..9
, pre/post fix. x++ , . x++ < 10;
++x < 10; , .
, x 9, 9 (++) < 10 → 9 ? , 9 ++. x. ++ x 1st so ++ 9 < 10 → 10 < 10 NO.