Skip to content

Instantly share code, notes, and snippets.

@darui00kara
Created May 22, 2015 05:35
Show Gist options
  • Save darui00kara/bfa3c5050c46904f7ceb to your computer and use it in GitHub Desktop.
Save darui00kara/bfa3c5050c46904f7ceb to your computer and use it in GitHub Desktop.
# encoding: utf-8
# File Name: time.rb
# Create Day is 2015/05/22
# Last Update Day is 2015/05/22
puts "Timeクラス"
time = Time.now
puts time
# フォーマットを指定して出力する
print "%Y年%m月%d日 = ", time.strftime("%Y年%m月%d日"), "\n"
puts
print "日付%x = ", time.strftime("日付%x"), "\n"
puts
print "%H時(=%I時)%M分%S秒 = ", time.strftime("%H時(=%I時)%M分%S秒"), "\n"
puts
print "時刻%X = ", time.strftime("時刻%X"), "\n"
puts
print "タイムゾーン = ", time.strftime("%Z"), "\n"
puts
print "日付+時刻 = ", time.strftime("%c"), "\n"
puts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment