Find output:-
for(int i=51;i<=55;i++)
{
int d=i%10;
if(i%d==0)
System.out.print((d*10+d)+" ");
else
System.out.print((i+10+d)+" ");
}
Answers
Answered by
1
Answer:
the output would be:
11 22 66 68 55
Similar questions