public class Solution { public int BulbSwitch(int n) { var x = Math.Sqrt(n); var y = Convert.ToInt32(Math.Floor(x)); return y; }}
本文共 216 字,大约阅读时间需要 1 分钟。
public class Solution { public int BulbSwitch(int n) { var x = Math.Sqrt(n); var y = Convert.ToInt32(Math.Floor(x)); return y; }}
转载于:https://www.cnblogs.com/asenyang/p/6970325.html