write a program to print the first 10 multiples of 5 using FOR loop,While loop and Do loop
Answers
Answered by
0
Answer:
public class multiples of 5
{
public static void main()
{
for (int I=5;I<=50;I=I+5)
System.out.println(i+" ") ;
}
}
please mark me as the brainliest
Similar questions