InterviewSolution
Saved Bookmarks
| 1. |
Write a program I java to print the square of the numbers from 1 to 10 also print the sum of it |
|
Answer» Input : N = 4Output : 3012 + 22 + 32 + 42= 1 + 4 + 9 + 16= 30Iput : N = 5Output : 55 |
|