Java的運算符-取整,取絕對值,取餘數

舍掉小數取整:Math.floor(3.5)=3 四捨五入取整:Math.rint(3.5)=4 進位取整:Math.ceil(3.1)=4  取絕對值:Math.abs(-3.5)=3.5 取餘數:A%B = 餘數 
相關文章
相關標籤/搜索