Write a program in Java to print all the number which is divisible by 5 from 2 to 200.
Answers
Answered by
2
Answer:
class helping
{
public void disp()
{
for(int i=2; i<=200; i++)
{
if(i%5==0)
{
System.out.println(i);
}
}
}
}
Similar questions