在C#中,你可以使用Math.Sqrt()
方法來計算一個數的平方根。這個方法接受一個double
類型的參數,并返回該數的平方根。下面是一個簡單的示例:
double number = 25;
double squareRoot = Math.Sqrt(number);
Console.WriteLine("The square root of " + number + " is " + squareRoot);
在這個示例中,我們計算了25的平方根,并將結果打印到控制臺。
如果你需要計算一個數的平方根并保留更多的小數位,你可以將double
類型更改為double
類型,并使用Math.Round()
方法來四舍五入結果。例如:
double number = 25;
double squareRoot = Math.Sqrt(number);
double roundedSquareRoot = Math.Round(squareRoot, 5); // 保留5位小數
Console.WriteLine("The square root of " + number + " is " + roundedSquareRoot);
在這個示例中,我們將平方根四舍五入到5位小數,并將結果打印到控制臺。