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 7706689
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T00:10:50+00:00 2026-06-01T00:10:50+00:00

I know that there are many different questions about this sort of topic on

  • 0

I know that there are many different questions about this sort of topic on SO already, but I couldn’t find a way to tailor them all to my specific needs.

What I have is a floating point number that gets sent to me through the network that I need to convert and graph out to the screen. The numbers can range from 5.2, 285.159, 294729172.258, -10734.112, etc. What I would like to do is get the value used to round from one digit below the most significant digit.

Example:

5.2 = 5
285.159 = 300
294729172.258 = 300000000
-10734.112 = -11000

Any advice that can be used to help guide me would be greatly appreciated.

  • 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-01T00:10:51+00:00Added an answer on June 1, 2026 at 12:10 am

    Here’s my solution:

    int roundMostSignificant(float input)
    {
        NSNumber *number = [NSNumber numberWithFloat:input];
        static NSNumberFormatter *formatter = nil;
    
        if (!formatter)
        {
            formatter = [NSNumberFormatter new];
            [formatter setMinimumSignificantDigits:1];
            [formatter setMaximumSignificantDigits:1];
            [formatter setUsesSignificantDigits:YES];
        }
    
        return [[formatter numberFromString:[formatter stringFromNumber:number]] intValue];
    }
    

    Yes, this uses objects, but I think that this will be your best bet in the long run, as it handles rounding, parsing, etc. for you.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

NOTE: I know there are many questions that talked about that but I'm still
I know there are plenty of questions here already about this topic (I've read
I know that there are many Delphi database related questions available, but I'm considering
First of all: I do know that there are already many questions and answers
I know that this question has been asked many times ( but in different
I know there are many discussions about the emulator which is so slow that
There are many things that all programmers should know, but I am particularly interested
Firstly I know that there are many question and solutions to correct thread marshalling
It's my first question on SO. I know that there were many topics on
I know that there are so many standards for writing code. And some policy

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.