Ruby メソッドを利用して偶数・奇数を判定するサンプル
環境
Windows11 pro 64bit
ruby ruby 3.0.3p157
構文
1.メソッドの定義
def メソッド名(引数)
処理コード
end
2.メソッドを呼び出す
メソッド名(値)
使用例
def evenFunc(x) if x % 2 == 0 then return true else return false end end p evenFunc(12) p evenFunc(23)
実行結果
true
false