Share vb.net addition of two numbers,

phanhai.nam

New member
#vb.net #Addition #two số #Programming #tutorial ** Cách thêm hai số trong vb.net **

Thêm hai số trong VB.NET là một nhiệm vụ đơn giản.Bạn có thể sử dụng phương thức `Thêm` của lớp` math`.Phương thức `add` lấy hai số làm đối số và trả về tổng của chúng.

Ví dụ: mã sau đây thêm hai số và in kết quả vào bảng điều khiển:

`` `VBNet
Dim x như số nguyên = 10
Dimer y as integer = 20

Dim sum as integer = math.add (x, y)

Console.WriteLine ("tổng của {0} và {1} là {2}", x, y, sum)
`` `

Đầu ra của mã này sẽ là:

`` `
Tổng 10 và 20 là 30
`` `

Bạn cũng có thể sử dụng toán tử `+` để thêm hai số.Mã sau đây tương đương với ví dụ trước:

`` `VBNet
Dim x như số nguyên = 10
Dimer y as integer = 20

Dim sum as integer = x + y

Console.WriteLine ("tổng của {0} và {1} là {2}", x, y, sum)
`` `

Đầu ra của mã này sẽ giống như ví dụ trước.

## Bài viết tham khảo

* [Cách thêm hai số trong vb.net] (https://www.tutorialspoint.com/vbnet/vbnet_add_two_numbers.htm
* [Toán tử bổ sung vb.net] (+ Operator - Visual Basic)
* [Phương pháp Math.Add] (https://docs.microsoft.com/en-us/dotnet/api/system.math.add?view=NET-5.0)

## hashtags

* #vb.net
* #phép cộng
* #two số
* #Programming
* #tutorial
=======================================
#vb.net #Addition #two numbers #Programming #tutorial **How to Add Two Numbers in VB.NET**

Adding two numbers in VB.NET is a simple task. You can use the `Add` method of the `Math` class. The `Add` method takes two numbers as arguments and returns their sum.

For example, the following code adds two numbers and prints the result to the console:

```vbnet
Dim x As Integer = 10
Dim y As Integer = 20

Dim sum As Integer = Math.Add(x, y)

Console.WriteLine("The sum of {0} and {1} is {2}", x, y, sum)
```

The output of this code will be:

```
The sum of 10 and 20 is 30
```

You can also use the `+` operator to add two numbers. The following code is equivalent to the previous example:

```vbnet
Dim x As Integer = 10
Dim y As Integer = 20

Dim sum As Integer = x + y

Console.WriteLine("The sum of {0} and {1} is {2}", x, y, sum)
```

The output of this code will be the same as the previous example.

## Reference Articles

* [How to Add Two Numbers in VB.NET](https://www.tutorialspoint.com/vbnet/vbnet_add_two_numbers.htm)
* [VB.NET Addition Operator](https://docs.microsoft.com/en-us/dotnet/visual-basic/language-reference/operators/addition-operator)
* [Math.Add Method](https://docs.microsoft.com/en-us/dotnet/api/system.math.add?view=net-5.0)

## Hashtags

* #vb.net
* #Addition
* #two numbers
* #Programming
* #tutorial
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top