InterviewSolution
Saved Bookmarks
| 1. |
Write a program to print the sum of the following series. 0, 3, 8, 15 …. Upto n terms. |
| Answer» TION:The java program for the above question is as FOLLOWS: Explanation: public class SERIES // Class DEFINITION. {. public static void main(String[] ARGS) // Main function declaration. {. int i=0,series=0,s=0; ... | |