int a=19;
while(a>=1)
{
if(a%5==0)
break;
System.out.println(a);
a=a+2;
tell output
Answers
Answered by
5
Explanation:
first check no is greater than 1
then check num%5==0
and increment value by 2
so output is:
Similar questions