Computer Science, asked by jiyathakuri12, 7 months ago

write a JavaScript program to display even number from 20 to 30 using for loop​

Answers

Answered by Anonymous
3

Answer:

class even

{

public static void main(String args[])

{

int a;

for (a = 20;a<=30;a=a+2)

System.out.println(a);

}

}

Similar questions