8 lines
97 B
C
8 lines
97 B
C
while ( i-- > 1 )
|
|
{
|
|
x = f( i );
|
|
if ( x == 0 ) {
|
|
continue;
|
|
}
|
|
y += x * x;
|
|
} |