Computer Science, asked by guriya9, 1 year ago

write a program to reverse a numbers from 1 to 10 using for loop please answer it immediately it's urgent

Answers

Answered by Kingsane
1
class reverse
{
public static void main()
{
for (int a = 10 ; a>=0; a--)
{
System.out.println(a)
}
}
}

guriya9: thanx
Kingsane: its ok
Similar questions