Computer Science, asked by gurleenkour469, 4 months ago

c program to print odd number from 1 to N using while loop​

Answers

Answered by theankikumar09
2

Answer:

public class DisplayOddNumbersExample1.

{

public static void main(String args[])

{

int number=100;

System.out.print("List of odd numbers from 1 to "+number+": ");

for (int i=1; i<=number; i++)

{

Explanation:

Similar questions