Computer Science, asked by AksNema6711, 10 months ago

Wap using for loop to print multiple of 5 from 5 to 50

Answers

Answered by devagarwal4545
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