Give the output of the following code and state how many times the loop has been
executed:
for( i= 20;i<=40;i++)
{
if( i % 5==0)
continue;
System.out.println(2*i);
}
System.out.println(i);
Answers
Answered by
5
Similar questions