Write a program in Q Basic to print even numbers from 20 to 2 in reverse order
Answers
Answered by
1
class even
{
public static void main(String args[])
{
int i;
for(i=20;i>=2;i=i-2)
{
System.out.println(i);
}
}
}
HOPE IT HELPED FRIEND
Similar questions
Math,
7 months ago
English,
7 months ago
Math,
7 months ago
Environmental Sciences,
1 year ago
Hindi,
1 year ago
India Languages,
1 year ago
Biology,
1 year ago