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


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


Ruby中的取模函數將一個數字的取模值乘以另一個數字。

用法:number1.modulo(number2)

參數:該函數采用返回模數的number1和number2。


返回值:該函數以另一個數字返回一個數字的模值。

範例1:

# Ruby program of module function 
  
# Initializing the numbers  
num1 = 10
num2 = 6
num3 = 13
num4 = 5
       
# Printing the modulo value 
puts num1.modulo(num2) 
puts num3.modulo(num4)

輸出

4
3

範例2:

# Ruby program of module function 
  
# Initializing the numbers  
num1 = 100
num2 = 17
num3 = 90
num4 = 29
      
# Printing the modulo value 
puts num1.modulo(num2) 
puts num3.modulo(num4)

輸出

15
3


相關用法


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