write a java program to display first seven odd natural no. a while loop
Answers
Answered by
0
Answer:
while(i<=13)
{
system.out.print(i);
i +=2;
}
Explanation:
int i=0;
while(i<=13)
{
system.out.print(i);
i +=2;
}
Similar questions