-->
当前位置:首页 > 题库

PROGRAMMING:Sum of squares of natural numbers (*)

Luz5年前 (2021-05-10)题库404
Please write a program to find the sum of squares of natural numbers.
For example: the sum of squares of natural number $$150 $$is $$1 ^ 2 + 5 ^ 2 + 0 ^ 2 = 1 + 25 + 0 = 26 $.
####Input format
>Natural number
####Output format
>Sum of squares of natural numbers
####Input sample
```in
one hundred and fifty
```
####Output sample
```out
twenty-six
```







answer:If there is no answer, please comment