LoginSignup
1
0

More than 5 years have passed since last update.

ずんだのハロウィン問題 Ruby編

Last updated at Posted at 2018-10-31

ルール

  • 入力として "trick", "treat", "sushi", "poyayou", "tamakatsu" がランダムに与えられる
  • 入力をそのまま標準出力する
  • 入力が "trick" または "treat" だったら "happy halloween" と標準出力する
  • 入力が "trick" または "treat" ではなかったら "sleepy" と標準出力する

プログラム(Ruby)

input = %w(trick treat sushi poyayou tamakatsu).sample
puts input
puts %w(trick treat).include?(input) ? "happy halloween" : "sleepy"

出力例

trick
happy halloween
poyayou
sleepy
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0