Develop the Java program to print the multiples of 5 between 20 and 70

class Multi
{
 public static void main(String[] args)
 {
  for(int i = 20; i<=70;i+=5)
   System.out.println(i);
  /*   Or
  for(int i = 20; i<=70; i++)
  {
   if(i%5==0)
    System.out.println(i);
  }*/
 }
}
/*   OUTPUT!!!
20
25
30
35
40
45
50
55
60
65
70
*/
Copyright © LetML. Blogger Templates Designed by OddThemes