Tagged Questions
0
votes
3answers
65 views
C# Decimal Division (Extremely strange behavior)
Can anyone explain this?
Decimal leftSide = 13.0M;
Decimal rightSide = 1.0M;
Decimal tmpDec = 39.0M;
tmpDec * (rightSide / leftSide) = 2.9999999999999999999999999991
tmpDec * rightSide / leftSide = ...
-1
votes
4answers
162 views
how to solve attempted to divide by zero in c#? [closed]
I am getting this bug,
I wrote code like this below
code:
decimal Amnt;
decimal.TryParse(txtAmnt.Text, out Amnt);
int tnure=1;
int.TryParse(txtTnre.Text, out tnure);
txtDdctAmnt.Text = (Amnt ...
0
votes
3answers
55 views
I cannot get decimal after doing a simple division math
Look at my simple math script
double s = 3/2;
NSLog (@"%.2f",s);
I get 1, it should be 1.50
How can I fix it?
0
votes
1answer
211 views
Rounding Int from Decimal C#
I'm having a hard time understand the process of rounding when I convert a decimal to a long.
For example
decimal pi = Convert.ToDecimal(Math.PI);
long d = 2534254324524352;
long dpi = ...
0
votes
0answers
49 views
What is the most efficient method to obtain a fractional quotient when dividing two numbers?
What is the best method to use to obtain decimal/fractional quotient for two numbers?
I currently use Decimal.Divide() and nest a Decimal.Divide() function within itself.
Is Decimal.Divide() the ...
4
votes
2answers
2k views
C# How to divide decimals without implicit round up
In c# when you perform the division of two decimals the last digit of the result will automatically be rounded if the true mathematical result cannot be exactly stored as a decimal type.
I want to ...
0
votes
2answers
3k views
Division by Zero Errors
Mann i have a problem with this question from my professor. Here is the question:
Write the definition of a function typing_speed , that receives two parameters. The first is the number of words ...
2
votes
4answers
2k views
Overflow Exception when dividing two decimals in .NET
I'm having an issue trying to divide two decimals and then display the result. Annoyingly this is only happening on our server, and it appears to work perfectly fine if I run the code locally. This ...
0
votes
1answer
864 views
Calculating pi using infinite series in C#
I tried to write the following program in C# to calculate pi using infinite recursion, but I keep getting confused about integer/double/decimal division.
I really have no clue why this isn't working, ...
1
vote
5answers
378 views
Decimal Value is Zero when it should be 0.0x
If this was previously talked about, I'm sorry, I had a hard time searching on this.
I am calculating a depreciation rate. One portion of our calculation is 1/life in months. My table stores this ...