21.07.2017, 19:58
Hi,
Is there any difference
Is there any difference
Код:
new numberrs[ 2 ];
if( numberrs[ 0 ] + numberrs[ 1 ] > 100 )
{
}
and
if( (numberrs[ 0 ] + numberrs[ 1 ]) > 100 )
{
}

