WAP to print first 10 odd numbers in reverse order
—It is a question of computer programming
Answers
Answered by
3
Answer:
Java code for the following program:
class reverseorder
{
public static void main(String args[])
{
System.out.println("First ten odd numbers in reverse order:");
for(int i=19;i>=1;i--)
{
System.out.println(i);
}
}
Explanation:
Similar questions
English,
6 months ago
India Languages,
6 months ago
Science,
1 year ago
Math,
1 year ago
Math,
1 year ago