about | help | code help+videos | done | prefs |
fund_roundDown
Given a decimal number, round it down to the whole number below it. For example, 3.8 would be rounded down to 3.0. The Math class method Math.floor(___) always rounds down. Note: Math.floor returns a double. fund_roundDown(1.1) → 1.0 fund_roundDown(1.5) → 1.0 fund_roundDown(1.7) → 1.0 ...Save, Compile, Run (ctrl-enter) |
Progress graphs:
Your progress graph for this problem
Random user progress graph for this problem
Random Epic Progress Graph
Copyright Nick Parlante 2017 - privacy