Write a java program to display all multiples of 4 upto the range 50
Answers
Answered by
2
Answer:
class multiple
{
void main ( )
{
System.out.println ("Multiples of 4 upto range 50 are ");
for (int number=0; number<50; number++)
{
if (number%4==0)
{ System.out.print (number); }
}
}
}
hope it helps..
Similar questions
Chemistry,
4 months ago
Math,
4 months ago
Biology,
9 months ago
Accountancy,
9 months ago
Biology,
1 year ago