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