Newer
Older
Ruby / self_introduction.rb
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-


print("名前を入力: ")
name = gets.chomp.to_s

print("好きなもの: ")
like = gets.chomp.to_s

print("趣味: ")
hobby = gets.chomp.to_s


printf("\n私の名前は%sです。\n好きなものは%sで、\n趣味は%sです。\nよろしくおねがいします。", name, like, hobby)