Wap using for loop to print multiple of 5 from 5 to 50
Answers
Answered by
0
Answer:
Explanation:
in blue j
public class xyz
{
void main()
{
for(int a=1;a<=10;a++)
{
System.out.println(a*5);
}
}
}
Similar questions