Computer Science, asked by tanusreekar7, 1 month ago

write a program to display all odd numbers from 50 to 90 using for loop in Java. ​

Answers

Answered by shrutiwackchaure
2

Answer:

hii armyyyy !!!

Explanation:

how are you?

Answered by munibaabdullah10
2

Answer:

yes tae sir it is written down .

Explanation:

class JavaExample {

public static void main(String args[]) {

int n = 100;

System.out.print("Odd Numbers from 1 to "+n+" are: ");

for (int i = 1; i <= n; i++) {

if (i % 2 != 0) {

System.out.print(i + " ");

}

}

}

}

Output:Odd Numbers from 1 to 100 are: 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29

31 33 35 37 39 41 43 45 47 49 51 53 55 57 59 61 63 65 67 69 71 73 75 77

79 81 83 85 87 89 91 93 95 97 99

Related Java examples

1. Java program to check even or odd number

2. Java program to print alternate prime numbers

3. Java program to check leap year

4. Java program to print Pascals Triangle

mark as brainliest answer.

gd n8

Attachments:
Similar questions