Advertisements
Advertisements
Question
Write the program in Java to display the first ten terms of the following series:
0, 3, 8, 15, ...................
Answer in Brief
Solution
public class Q1c
{ public static void main(String args[])
{ int x = 0, y = 1, i;
for (i = 1; i <= 10; i++)
{ System.out.print(x + " ");
y = y + 2;
x = x + y;
}
}}
shaalaa.com
Is there an error in this question or solution?
Chapter 1.09: Iterative Constructs in Java - EXERCISES [Page 124]