當兩個數字相除時,Ruby中的remainder()函數返回餘數。
用法:(number1).remainder(number2)
參數:該函數采用兩個數字number1和number2,它們返回整數除法和餘數。
返回值:該函數返回餘數。
例子1:
# Ruby program for pow() function
# Initializing the numbers
num1 = 18
num2 = 3
num3 = 13
num4 = 5
# Printing the modulo value
puts num1.remainder(num2)
puts num3.remainder(num4)
輸出:
0 3
例子2:
# Ruby program for pow() function
# Initializing the numbers
num1 = 19
num2 = 4
num3 = 20
num4 = 5
# Printing the modulo value
puts num1.remainder(num2)
puts num3.remainder(num4)
輸出:
3 0
相關用法
- Ruby BigDecimal remainder()用法及代碼示例
- Ruby Numeric remainder()用法及代碼示例
- Ruby Integer integer?用法及代碼示例
- Ruby Integer gcd()用法及代碼示例
- Ruby Integer abs()用法及代碼示例
- Ruby Integer next用法及代碼示例
- Scala Integer -用法及代碼示例
- Ruby Integer lcm()用法及代碼示例
- Ruby Integer div()用法及代碼示例
- Ruby Integer chr用法及代碼示例
- Ruby Integer odd?用法及代碼示例
- Ruby Integer even?用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby Integer remainder() function with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。