Share 1^2+2^2+3^2+...+n^2 c++

thatthocaroline

New member
## 1^2+2^2+3^2+...+n^2 trong c ++

`` `C ++
#include <Istream>

sử dụng không gian tên STD;

int main () {
int n;
cin >> n;

int sum = 0;
for (int i = 1; i <= n; i ++) {
sum += i * i;
}

cout << sum << endl;

trả lại 0;
}
`` `

Chương trình này tính toán tổng của N bình phương đầu tiên.Tổng của N bình phương đầu tiên được đưa ra bởi công thức:

`` `
S = 1^2 + 2^2 + 3^2 + ... + n^2 = n (n + 1) (2n + 1) / 6
`` `

## hashtags

* #C ++
* #Programming
* #algorithms
* #Toán học
* #Tổng bình phương
=======================================
## 1^2+2^2+3^2+...+n^2 in C++

```c++
#include <iostream>

using namespace std;

int main() {
int n;
cin >> n;

int sum = 0;
for (int i = 1; i <= n; i++) {
sum += i * i;
}

cout << sum << endl;

return 0;
}
```

This program calculates the sum of the first n squares. The sum of the first n squares is given by the formula:

```
S = 1^2 + 2^2 + 3^2 + ... + n^2 = n(n + 1)(2n + 1) / 6
```

## Hashtags

* #C++
* #Programming
* #algorithms
* #Math
* #sum of Squares
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top