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
English,
4 months ago
Math,
4 months ago
English,
4 months ago
Biology,
8 months ago
Accountancy,
8 months ago
Biology,
11 months ago
Social Sciences,
11 months ago