Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8109765
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T01:31:27+00:00 2026-06-06T01:31:27+00:00

How do I round numbers up or down depending on the value in object

  • 0

How do I round numbers up or down depending on the value in object C.. for example.

Lets say the number is 143 – I would want to round down to 140
but if the number is 146 – I would want to round up to 150

any suggestions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T01:31:29+00:00Added an answer on June 6, 2026 at 1:31 am

    Assuming 145 should round to 150 (that’s the standard in science and technology), the formula is:

    x_rounded = ((x + 5)/10)*10;
    

    More generally, when rounding to the nearest n, it’s

    x_rounded = ((x + n/2)/n)*n;
    

    It comes from the fact that integer division always rounds down.

    For negative numbers, it’s slightly more tricky.

    EDIT: also assuming it’s all integers. With floats/doubles, better use the C math library, as division works differently. Like this:

    #include <math.h>
    
    x_rounded = floor((x+5)/10) * 10;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to round the number down despite the value after the decimal point.
I'm trying to round down a number to the nearest say 15, 20, 30.
I want to round numbers up to their nearest order of magnitude. (I think
How would I round the result from two divided numbers, e.g. 3/2 As when
How can we round off a number to the nearest 10 in php? Say
I want to round numbers to hundreds with javascript like this: 10651.89 = 10700
How does Mathematica decide when to round numbers in its output? For example, giving
I have a 64-bit long that I want to round down to the nearest
How can I round down a number in JavaScript? math.round() doesn't work because it
Whenever the decimal remainder is less than .56 I want to round down (normally

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.