Computer Science, asked by poddarravi7, 2 months ago

wap to print 2 digit even numbers between 10 to 99​

Answers

Answered by amansarrafas24payxgs
0

Answer:

import java.util.*;

class Even

{

public void main()

{

for(int i = 10;i <= 99;i++)

{

if(i%2 == 0)

{

System.out.println(i);

}

}

}

}

I hope you find it useful... If you have any query do comment, I will try to solve it...

Similar questions