module A1616tsGem
Constants
- VERSION
Public Class Methods
break_even_point(fixed_cost, variable_cost, sales_result)
click to toggle source
# File lib/a1616ts_gem.rb, line 4 def self.break_even_point(fixed_cost, variable_cost, sales_result) return (fixed_cost / (1 - variable_cost / sales_result)).round end