irb(main):019:0> 30.to_s(2)=> "11110"irb(main):020:0> 30.to_s(10)=> "30"irb(main):021:0> 30.to_s(16)=> "1e"irb(main):027:0> '11110'.to_i(2)=> 30irb(main):028:0> '30'.to_i(10)=> 30irb(main):029:0> '1e'.to_i(16)=> 30
Post a Comment
No comments:
Post a Comment