Share 66. plus one c++,

#C ++, #C ++, #Plus, #one ## 66. cộng với một trong C ++

66. cộng với một là một vấn đề đơn giản trong C ++.Cho một số nguyên không âm *n *, trả lại tổng của *n *và 1.

**Ví dụ 1:**

`` `
Đầu vào: n = 1
Đầu ra: 2
`` `

** Ví dụ 2: **

`` `
Đầu vào: n = 10
Đầu ra: 11
`` `

**Giải pháp:**

`` `C ++
#include <Istream>

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

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

cout << n + 1 << endl;

trả lại 0;
}
`` `

** Độ phức tạp về thời gian: ** O (1)

** Độ phức tạp không gian: ** O (1)

## hashtags

* #C ++
* #C ++
* #Thêm
* #Một
=======================================
#C++, #C++, #Plus, #one ## 66. Plus One in C++

66. Plus One is a simple problem in C++. Given a non-negative integer *n*, return the sum of *n* and 1.

**Example 1:**

```
Input: n = 1
Output: 2
```

**Example 2:**

```
Input: n = 10
Output: 11
```

**Solution:**

```c++
#include <iostream>

using namespace std;

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

cout << n + 1 << endl;

return 0;
}
```

**Time Complexity:** O(1)

**Space Complexity:** O(1)

## Hashtags

* #C++
* #C++
* #Plus
* #one
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top