Computer Science, asked by adityaraj5446, 2 months ago

wap to assign any three number and print the sum of their squares in Java program

Answers

Answered by anshulsaroha0005
0

Answer:

Given a positive integer N. The task is to find 12 + 22 + 32 + ….. + N2.

Examples:

Input : N = 4

Output : 30

12 + 22 + 32 + 42

= 1 + 4 + 9 + 16

= 30

Iput : N = 5

Output : 55

Similar questions