Skip to content

Instantly share code, notes, and snippets.

@cody-code-wy
Created May 25, 2016 04:57
Show Gist options
  • Save cody-code-wy/e6fdb02762a12f5884f5f71a44a69e12 to your computer and use it in GitHub Desktop.
Save cody-code-wy/e6fdb02762a12f5884f5f71a44a69e12 to your computer and use it in GitHub Desktop.
def cost(length,width,colors)
x = length * width;
if colors > 2
x += colors * 15
else
x += colors * 10
end
return x * 1.15
end
puts cost(10,10,0);
puts cost(10,10,1);
puts cost(10,10,2);
puts cost(10,10,3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment