wap to print 2 digit even numbers between 10 to 99
Answers
Answered by
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
Chemistry,
1 month ago
Computer Science,
1 month ago
World Languages,
4 months ago
Math,
10 months ago
History,
10 months ago