InterviewSolution
Saved Bookmarks
| 1. |
Write a program to find the sum of the series:1 4 10 19 34 52 73 100 ... NExample if thevalue for N is 105, then thNote : Print only the output number.print only 293 |
| Answer» TION: by:Tn = n2 – ( n – 1 )2this is the answer | |