Write a program in Java to display the first 10 terms of the following series:
10, 20, 30, 40, ……..
272 Likes
public class KboatSeries { public static void main(String args[]) { for (int i = 10; i <= 100; i += 10) { System.out.print(i + " "); } } }
Answered By
147 Likes