Java Series Programs
Write the program in Java to display the first ten terms of the following series:
1, 4, 9, 16,
Java
Java Iterative Stmts
309 Likes
Answer
public class KboatSeries
{
public static void main(String args[]) {
for (int i = 1; i <= 10; i++) {
System.out.print(i * i + " ");
}
}
}
Variable Description Table
Program Explanation
Output
Answered By
163 Likes