Newer
Older
Ruby / water_slider.rb
@SATO Mitsuki SATO Mitsuki on 2 Aug 230 bytes 2025-08-02 12:50:53
#!/usr/bin/env ruby
# -*- coding:utf-8 -*-

height = 0

while height <  120
  print"身長を入力してください\n"
  height = gets.chomp.to_i
  

  if height < 120
    print"また今度!\n"
  end
end
print"わーい!\n"