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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T11:12:34+00:00 2026-05-27T11:12:34+00:00

I need to do some calculations with fractions which result have infinite decimals. For

  • 0

I need to do some calculations with fractions which result have infinite decimals.
For example:

240/360=0.666666...

The output has infinite decimals and when I multiply this by an integer the result must be an integer. So I’ve coded this way:

result = someInteger * decimal.divide(240/360);

(Try with someInteger = 2,700)
But the result has decimal values and some calculators or even spreadsheets would output an integer result.
How do I get same results in c#?

Thanks

  • 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-27T11:12:36+00:00Added an answer on May 27, 2026 at 11:12 am

    The output has infinite decimals and when I multiply this by an integer the result must be an integer.

    That won’t really happen.

    What you can do is careful rounding (after the multiplication).

    Or instead of

     result = someInteger * decimal.divide(240/360);
    

    you can use

     result = someInteger * 240 / 360;
    

    what’s the problem with that?

    When you’re really serious about working with fractions and keeping the precision you’ll need a special type:

    struct Rational 
    {
      public readonly int Numerator;
      public readonly int Denominator;
    
      // lots of members, including operators
    }
    

    There are libraries and examples for how to do this.

    But note that you still won’t be able to represent π exactly.

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

Sidebar

Related Questions

I have a method myButtonAction which performs some heavy calculations, which I need to
I need to write application in .NET which will be make some calculations on
I have a float value that i need to do some calculations on and
I am developing a Firefox extension and I need to perform some high-speed calculations
I have a controller that runs some calculation on data, and then I need
Need some regular expressions help. So far I have my code working to allow
Need some help... I have jasperserver 4.1 installed on my ubuntu. It runs via
Need some help, please. I have a line of horizontal thumbnails loaded as ONE
I need to make some calculations using the user current lat/long and some values
I've run into a small programming problem. I need to do some time calculations,

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.