数字转换成罗马数字
发布时间:2020-12-17 04:12:22 所属栏目:百科 来源:网络整理
导读:今天PHP站长网 52php.cn把收集自互联网的代码分享给大家,仅供参考。 # Hash holding the roman values# Values above 3999 are not accepted,as numerals with bars are required.roman_map = Hash[ 1000 = "M",900 = "C
以下代码由PHP站长网 52php.cn收集自互联网 现在PHP站长网小编把它分享给大家,仅供参考 # Hash holding the roman values # Values above 3999 are not accepted,as numerals with bars are required. roman_map = Hash[ 1000 => "M",900 => "CM",500 => "D",400 => "CD",100 => "C",90 => "XC",50 => "L",40 => "XL",10 => "X",9 => "IX",5 => "V",4 => "IV",1 => "I"] print "Enter number> " arabic = gets.chomp.to_i if arabic < 4000 # Sort the keys,highest value (1000) first,then descending,# and parse values roman_map.keys.sort{ |a,b| b <=> a }.each do |n| # get roman numeral until the arabic number is too small,# in which case we'll try the smaller roman values while arabic >= n arabic = arabic-n print roman_map[n] end end else puts "Please enter number lower than 3999." end 以上内容由PHP站长网【52php.cn】收集整理供大家参考研究 如果以上内容对您有帮助,欢迎收藏、点赞、推荐、分享。 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |