forked from thantrieu/C-Tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBai23.cpp
55 lines (40 loc) · 994 Bytes
/
Bai23.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* Hàm (function) trong C++
Lesson Nội dung chính
1. Tổng quan về hàm
2. Truyền tham chiếu, truyền giá trị
3. Kiểu trả về của hàm main
4. Hàm inline
5. Tham số mặc định của hàm
6. Hàm nguyên mẫu
7. Hàm đệ quy
8. Sử dụng project trong C++
$1. Tổng quan về hàm trong C++
- Lý do
- Định nghĩa, quy ước đặt tên hàm
- Kiểu trả về của hàm
- Tham số, đối số
type functionName(parameter list){
}
*/
#include <iostream>
using namespace std;
int addTwoNumbers(int a, int b) {
return (a + b);
}
float divAbyB(int a, int b) {
return 1.0f * a / b;
}
void showResult(float result) {
cout << "Result =" << result << endl;
}
int main() {
int a = 100, b = 255;
int sumOfAAndB = addTwoNumbers(a, b);
cout << addTwoNumbers(100, 200);
float divAforB = divAbyB(a, b);
showResult(sumOfAAndB);
showResult(divAforB);
char x[] = "Lalalal";
size_t len = strlen(x);
return 0;
}