wap to print the following series in java
10,20,30,40,.........n
Answers
Answered by
2
Answer:
public class Use_For_Loop
{
public static void main(String[] args)
{
for(int i = 10; i <= n; i+10)
{
System.out.println(i);
}
}
}
Explanation:
Hope it helps !
Similar questions