Computer Applications
Write the program in Java to display the first ten terms of the following series:
4, 16, 36, 64,
Java
Java Iterative Stmts
58 Likes
Answer
public class KboatSeries
{
public static void main(String args[]) {
for (int i = 2; i <= 20; i = i + 2) {
System.out.print((i * i) + " ");
}
}
}
Variable Description Table
Program Explanation
Output
Answered By
26 Likes
Related Questions
Write the program in Java to display the first ten terms of the following series:
24, 99, 224, 399,
Write the program in Java to display the first ten terms of the following series:
0, 7, 26,
Write the program in Java to display the first ten terms of the following series:
1, 9, 25, 49,
Write the program in Java to display the first ten terms of the following series:
0, 3, 8, 15,