question archive int sub=0; for (int i=0; i<10; i++) { if (i%2==1) continue; for (int j =1; j<=5; j++) { if (i*j>30) continue; toplam += j; } } //calculate iteration number?
Subject:Computer SciencePrice:2.86 Bought8
int sub=0;
for (int i=0; i<10; i++)
{
if (i%2==1) continue;
for (int j =1; j<=5; j++)
{
if (i*j>30) continue;
toplam += j;
}
}
//calculate iteration number?
Purchased 8 times