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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T20:55:17+00:00 2026-05-11T20:55:17+00:00

There is a strange behavior I cannot understand. Agreed that float point number are

  • 0

There is a strange behavior I cannot understand.
Agreed that float point number are approximations, so even operations that are obviously returning a number without decimal numbers can be approximated to something with decimals.

I’m doing this:

int num = (int)(195.95F * 100);

and since it’s a floating point operation I get 19594 instead of 19595.. but this is kind of correct.

What puzzles me is that if I do

float flo = 195.95F * 100;
int num = (int) flo;

I get the correct result of 19595.

Any idea of why this happens?

  • 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-05-11T20:55:17+00:00Added an answer on May 11, 2026 at 8:55 pm

    I looked to see if this was the compiler doing the math, but it behaves this way even if you force it out:

    static void Main()
    {
        int i = (int)(GetF() * GetI()); // 19594
        float f = GetF() * GetI();
        int j = (int)f; // 19595
    }
    [MethodImpl(MethodImplOptions.NoInlining)]
    static int GetI() { return 100; }
    [MethodImpl(MethodImplOptions.NoInlining)]
    static float GetF() { return 195.95F; }
    

    It looks like the difference is whether it stays in the registers (wider than normal r4) or is forced to a float variable:

    L_0001: call float32 Program::GetF()
    L_0006: call int32 Program::GetI()
    L_000b: conv.r4 
    L_000c: mul 
    L_000d: conv.i4 
    L_000e: stloc.0 
    

    vs

    L_000f: call float32 Program::GetF()
    L_0014: call int32 Program::GetI()
    L_0019: conv.r4 
    L_001a: mul 
    L_001b: stloc.1 
    L_001c: ldloc.1 
    L_001d: conv.i4 
    L_001e: stloc.2 
    

    The only difference is the stloc.1 / ldloc.1.

    This is supported by the fact that if you do an optimised build (which will remove the local variable) I get the same answer (19594) for both.

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

Sidebar

Related Questions

There is very strange assembly reference problem and loading problem I experience with my
Ok, I know this is a strange question, but there is a standard (fan-wise
There is a conversion process that is needed when migrating Visual Studio 2005 web
There are a few ways to get class-like behavior in javascript, the most common
There are two weird operators in C#: the true operator the false operator If
There are two popular closure styles in javascript. The first I call anonymous constructor
There is previous little on the google on this subject other than people asking
There seem to be many ways to define singletons in Python. Is there a
There are numerous Agile software development methods. Which ones have you used in practice
There are several types of objects in a system, and each has it's own

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.