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
Hindi,
1 month ago
Math,
1 month ago
World Languages,
2 months ago
Math,
8 months ago
History,
8 months ago