Share source code example c++

ticklishfish572

New member
## Ví dụ về mã nguồn trong C ++

Dưới đây là 3 ví dụ mã nguồn trong C ++:

1. Chương trình Hello World đơn giản:

`` `C ++
#include <Istream>

int main () {
std :: cout << "Xin chào, thế giới!"<< STD;
trả lại 0;
}
`` `

2. Một chương trình để tính toán trình tự Fibonacci:

`` `C ++
#include <Istream>

int fibonacci (int n) {
if (n == 0 || n == 1) {
trả lại n;
} khác {
trả về fibonacci (n - 1) + fibonacci (n - 2);
}
}

int main () {
for (int i = 0; i <10; i ++) {
std :: cout << fibonacci (i) << std :: endl;
}
trả lại 0;
}
`` `

3. Một chương trình sắp xếp một mảng số nguyên:

`` `C ++
#include <Istream>
#include <Thistithm>

int main () {
int mảng [] = {10, 5, 2, 4, 7, 1, 8, 9, 6, 3};
int n = sizeof (mảng) / sizeof (mảng [0]);

// Sắp xếp mảng theo thứ tự tăng dần
std :: sort (mảng, mảng + n);

// In mảng được sắp xếp
for (int i = 0; i <n; i ++) {
std :: cout << mảng << "";
}
std :: cout << std :: endl;

trả lại 0;
}
`` `

### hashtags

* #C ++
* #mã nguồn
* #Programming
* #tutorial
* #ví dụ
=======================================
## Source Code Example in C++

Here are 3 source code examples in C++:

1. A simple hello world program:

```c++
#include <iostream>

int main() {
std::cout << "Hello, world!" << std;
return 0;
}
```

2. A program to calculate the Fibonacci sequence:

```c++
#include <iostream>

int fibonacci(int n) {
if (n == 0 || n == 1) {
return n;
} else {
return fibonacci(n - 1) + fibonacci(n - 2);
}
}

int main() {
for (int i = 0; i < 10; i++) {
std::cout << fibonacci(i) << std::endl;
}
return 0;
}
```

3. A program to sort an array of integers:

```c++
#include <iostream>
#include <algorithm>

int main() {
int arr[] = {10, 5, 2, 4, 7, 1, 8, 9, 6, 3};
int n = sizeof(arr) / sizeof(arr[0]);

// Sort the array in ascending order
std::sort(arr, arr + n);

// Print the sorted array
for (int i = 0; i < n; i++) {
std::cout << arr << " ";
}
std::cout << std::endl;

return 0;
}
```

### Hashtags

* #C++
* #Source Code
* #Programming
* #tutorial
* #example
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top