當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Integer remainder()用法及代碼示例


當兩個數字相除時,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


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby Integer remainder() function with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。