write a program to reverse a numbers from 1 to 10 using for loop please answer it immediately it's urgent
Answers
Answered by
1
class reverse
{
public static void main()
{
for (int a = 10 ; a>=0; a--)
{
System.out.println(a)
}
}
}
{
public static void main()
{
for (int a = 10 ; a>=0; a--)
{
System.out.println(a)
}
}
}
guriya9:
thanx
Similar questions