Computer Science, asked by harsh20095, 21 days ago

WAP to print Even numbers from 500 to 1000

Answers

Answered by priya7668
1

Answer:

Here, your answer...

Explanation:

I'm writing only main function with the help of java language...

for( int i = 500; i<=1000;i++)

if( i%2==0)

System.out.println(+i);

else

continue;

HOPE IT WILL HELP YOU!

Similar questions