Module:PercentageCalculator: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 14: | Line 14: | ||
local percentagesToSubtract = {0.15, 0.25, 0.30, 0.35, 0.40} | local percentagesToSubtract = {0.15, 0.25, 0.30, 0.35, 0.40} | ||
for i, percent in ipairs(percentagesToSubtract) do | for i, percent in ipairs(percentagesToSubtract) do | ||
input = input * (1 - percent) | |||
table.insert(percentages, | table.insert(percentages, input) | ||
end | end | ||
-- Format the output | -- Format the output | ||
local output = {} | local output = {} | ||
for i, value in ipairs(percentages) do | |||
for i | table.insert(output, tostring(value)) | ||
table.insert(output, tostring( | |||
end | end | ||
return table.concat(output, " | return table.concat(output, " ") | ||
end | end | ||
return p | return p |
Revision as of 15:38, 1 May 2024
Documentation for this module may be created at Module:PercentageCalculator/doc
-- Function to calculate percentages of a number
local p = {}
function p.calculatePercentages(frame)
local input = tonumber(frame.args[1])
if not input then
return "Invalid input. Please enter a valid number."
end
local originalNumber = input
local percentages = {originalNumber}
-- Calculate percentages and subtract from the original number
local percentagesToSubtract = {0.15, 0.25, 0.30, 0.35, 0.40}
for i, percent in ipairs(percentagesToSubtract) do
input = input * (1 - percent)
table.insert(percentages, input)
end
-- Format the output
local output = {}
for i, value in ipairs(percentages) do
table.insert(output, tostring(value))
end
return table.concat(output, " ")
end
return p