格式化输出

#   E5.3-1.rb    
a=5
b="hh"
c=123.789
puts  "a = #{a}"
puts  "b = #{b}"
puts  "The Cis = #{c}"
=begin
a = 5
b = hh
The Cis = 123.789
=end

 

posted @ 2017-04-21 18:56  sky20080101  阅读(65)  评论(0)    收藏  举报