Computer Science, asked by RudranilGhosh2020, 9 hours ago

Write a program to print all odd numbers from 100 to 150 ( Using Do-While loop)..

Answer me very fast as soon as possible​

Answers

Answered by ayush1846
1

Answer:

public class loop

{

public void calc( )

{

int i=99;

do

{

i=i+2;

} while (i<=150);

System.out.println(i);

}

}

Similar questions