語言:C#
功能:無條件捨去
語法:
public static double NoRound(double num, int post) { double nReturn; double nPow; if (post <= 0 ) { nReturn = Math.Floor(num); } else { nPow = Math.Pow(10, post); nReturn = Math.Floor(num * nPow)/nPow; } return nReturn; } |
janema66 發表在 痞客邦 留言(2) 人氣()
留言列表