Sha256: 6a21f69b94b72089fc43fa7ff7f48e6b93d49a690a2436fa1ae20a34bd9b77d6
Contents?: true
Size: 720 Bytes
Versions: 1
Compression:
Stored size: 720 Bytes
Contents
# frozen_string_literal: true # @author Hernani Rodrigues Vaz module ExtensoPt # Produz numeral romano a partir de inteiro # # @param [Integer] inteiro a converter # @return [String] numeral romano do inteiro def self.ri2r(inteiro) return '' if inteiro.zero? ROMAN.each do |r, v| return r.to_s + ri2r(inteiro - v) if v <= inteiro end end # Produz inteiro a partir de numeral romano # # @param [String] numeral romano a converter # @param [Integer] ultimo valor convertido # @return [Integer] inteiro do numeral romano def self.rr2i(numeral, ultimo) return 0 if numeral.empty? v = ROMAN[numeral[-1].to_sym] rr2i(numeral.chop, v) + (v < ultimo ? -v : v) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
extenso_pt-0.7.2 | lib/extenso_pt/romana.rb |