■現在の秒を表示する

■書式

Time.now.sec

■説明

現在の秒を表示するにはTime.now.secの値をprintで表示します。

■サンプル

#!/usr/bin/ruby
h = Time.now.sec
print h,"\n"