Share vb.net 1 decimal place

#vb.net #DecimalPlace #formatting #data #numbers ## 1 Decimal Place trong VB.NET

** Cách làm tròn đến 1 thập phân trong vb.net **

Trong vb.net, bạn có thể làm tròn một số đến 1 thập phân bằng cách sử dụng hàm ** vòng **.Hàm ** vòng ** có hai đối số: số được làm tròn và số lượng vị trí thập phân để làm tròn.Ví dụ: mã sau làm tròn số 123.456 đến 1 thập phân:

`` `VBNet
Số Dim dưới dạng Double = 123.456
Dim RoundedNumber là double = vòng (số, 1)

Console.WriteLine (RoundedNumber)
`` `

Mã này sẽ đưa ra kết quả sau:

`` `
123.4
`` `

Bạn cũng có thể sử dụng hàm ** Cint ** để làm tròn một số vào số nguyên gần nhất.Hàm ** Cint ** có một đối số: số được làm tròn.Ví dụ: mã sau làm tròn số 123.456 cho số nguyên gần nhất:

`` `VBNet
Số Dim dưới dạng Double = 123.456
Dim RoundedNumber as Integer = cint (số)

Console.WriteLine (RoundedNumber)
`` `

Mã này sẽ đưa ra kết quả sau:

`` `
123
`` `

## Tài nguyên bổ sung

* [MSDN: Hàm tròn] (Math.Round Method (System))
* [MSDN: Hàm Cint] (https://docs.microsoft.com/en-us/dotnet/api/system.convert.cint?view=Net-6.0)
=======================================
#vb.net #DecimalPlace #formatting #data #numbers ##1 Decimal Place in VB.NET

**How to Round to 1 Decimal Place in VB.NET**

In VB.NET, you can round a number to 1 decimal place using the **Round** function. The **Round** function takes two arguments: the number to be rounded and the number of decimal places to round to. For example, the following code rounds the number 123.456 to 1 decimal place:

```vbnet
Dim number As Double = 123.456
Dim roundedNumber As Double = Round(number, 1)

Console.WriteLine(roundedNumber)
```

This code will output the following result:

```
123.4
```

You can also use the **CInt** function to round a number to the nearest integer. The **CInt** function takes one argument: the number to be rounded. For example, the following code rounds the number 123.456 to the nearest integer:

```vbnet
Dim number As Double = 123.456
Dim roundedNumber As Integer = CInt(number)

Console.WriteLine(roundedNumber)
```

This code will output the following result:

```
123
```

## Additional Resources

* [MSDN: Round Function](https://docs.microsoft.com/en-us/dotnet/api/system.math.round?view=net-6.0)
* [MSDN: CInt Function](https://docs.microsoft.com/en-us/dotnet/api/system.convert.cint?view=net-6.0)
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top