Computer Science, asked by samarjitdas136, 5 months ago

wap to print the following series in java
10,20,30,40,.........n

Answers

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