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


Julia mod()用法及代碼示例


這個mod()是 julia 中的一個內置函數,用於在指定的被除數除以除數時返回餘數。

用法: mod(x, y)

參數:

  • x:指定股息。
  • y:指定的除數。

返回值:當指定的被除數除以除數時,它返回餘數。

範例1:




# Julia program to illustrate 
# the use of mod() method
  
# Getting remainder when the specified
# dividend is divided by divisor.
println(mod(0, 3))
println(mod(1, 1))
println(mod(7, 2))

輸出:

0
0
1

範例2:


# Julia program to illustrate 
# the use of mod() method
  
# Getting remainder when the specified
# dividend is divided by divisor.
println(mod(5, 3))
println(mod(10, 2))
println(mod(7.3, 2))
println(mod(1.8, 0))
println(mod(-6, 4))
println(mod(-3, -2))

輸出:

2
0
1.2999999999999998
NaN
2
-1

相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Getting the remainder value after division in Julia – mod() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。