write a looping statement to display odd numbers less than 10? yeh computer ka question hai
Answers
Answered by
0
Answer:
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 + " ");
}
}
}
}
Answered by
0
Answer:
In this section, we will create a Java program to display odd numbers from 1 to ... We can use different Java loops to display odd numbers
hope it will help u
Similar questions