Click here to Skip to main content
15,893,564 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# program to block user input(both mouse and keyboard) until a specific keyword(password) is entered PinPopular
Chris Trelawny-Ross27-Jul-10 12:55
Chris Trelawny-Ross27-Jul-10 12:55 
GeneralRe: C# program to block user input(both mouse and keyboard) until a specific keyword(password) is entered Pin
Kim Togo28-Jul-10 1:35
professionalKim Togo28-Jul-10 1:35 
AnswerRe: C# program to block user input(both mouse and keyboard) until a specific keyword(password) is entered Pin
aj.esler28-Jul-10 1:28
aj.esler28-Jul-10 1:28 
QuestionHow come I get a rounded number when I multiply doubles?? [modified] Pin
roman_s27-Jul-10 5:52
roman_s27-Jul-10 5:52 
AnswerRe: How come I get a rounded number when I multiply doubles?? Pin
harold aptroot27-Jul-10 6:03
harold aptroot27-Jul-10 6:03 
AnswerRe: How come I get a rounded number when I multiply doubles?? Pin
Luc Pattyn27-Jul-10 6:06
sitebuilderLuc Pattyn27-Jul-10 6:06 
AnswerRe: How come I get a rounded number when I multiply doubles?? Pin
Richard MacCutchan27-Jul-10 6:10
mveRichard MacCutchan27-Jul-10 6:10 
AnswerRe: How come I get a rounded number when I multiply doubles?? Pin
T M Gray27-Jul-10 9:01
T M Gray27-Jul-10 9:01 
AnswerRe: How come I get a rounded number when I multiply doubles?? Pin
William Winner27-Jul-10 9:24
William Winner27-Jul-10 9:24 
GeneralRe: How come I get a rounded number when I multiply doubles?? Pin
T M Gray27-Jul-10 10:12
T M Gray27-Jul-10 10:12 
AnswerRe: How come I get a rounded number when I multiply doubles?? Pin
Theraot28-Jul-10 4:15
Theraot28-Jul-10 4:15 
AnswerRe: How come I get a rounded number when I multiply doubles?? Pin
pinskerr28-Jul-10 1:10
pinskerr28-Jul-10 1:10 
AnswerRe: How come I get a rounded number when I multiply doubles?? Pin
roman_s28-Jul-10 3:43
roman_s28-Jul-10 3:43 
AnswerRe: How come I get a rounded number when I multiply doubles?? Pin
ely_bob28-Jul-10 3:43
professionalely_bob28-Jul-10 3:43 
GeneralRe: How come I get a rounded number when I multiply doubles?? Pin
Charvak Karpe28-Jul-10 4:12
Charvak Karpe28-Jul-10 4:12 
GeneralRe: How come I get a rounded number when I multiply doubles?? Pin
ely_bob28-Jul-10 4:32
professionalely_bob28-Jul-10 4:32 
GeneralRe: How come I get a rounded number when I multiply doubles?? Pin
Member 315345731-Jul-10 18:13
Member 315345731-Jul-10 18:13 
AnswerRe: How come I get a rounded number when I multiply doubles?? Pin
Kenneth Kasajian28-Jul-10 8:29
Kenneth Kasajian28-Jul-10 8:29 
GeneralRe: How come I get a rounded number when I multiply doubles?? Pin
PaulLinton28-Jul-10 14:15
PaulLinton28-Jul-10 14:15 
GeneralRe: How come I get a rounded number when I multiply doubles?? Pin
Kenneth Kasajian28-Jul-10 14:42
Kenneth Kasajian28-Jul-10 14:42 
GeneralRe: How come I get a rounded number when I multiply doubles?? Pin
Mitch Hughes29-Jul-10 11:04
professionalMitch Hughes29-Jul-10 11:04 
[Stepping on my soapbox]
When dealing with floating point numbers, you should never assume that a number will be stored exactly. While some numbers can be stored exactly, most will not be.

From the cases I have encountered, too many people assume that a floating point number is good enough for exact numerical needs. But if the value 24.24999999999999 instead of 24.25 would be considered incorrect in your application, you should not be using floating point values.

Time and time again I have been called in to analyze why dollar values were coming in off by a penny or two (or more), and it has always* boiled down to the choice of using floating point representation to store exact values.

* Since 1992 I have encountered only 2 instances where the problem was an actual bug in the library.
AnswerRe: How come I get a rounded number when I multiply doubles?? Pin
sushantpokharel28-Jul-10 20:46
sushantpokharel28-Jul-10 20:46 
AnswerRe: How come I get a rounded number when I multiply doubles?? Pin
Member 315345731-Jul-10 18:08
Member 315345731-Jul-10 18:08 
AnswerRe: How come I get a rounded number when I multiply doubles?? Pin
Member 315345731-Jul-10 18:12
Member 315345731-Jul-10 18:12 
AnswerRe: How come I get a rounded number when I multiply doubles?? Pin
kxal8-Aug-10 18:25
kxal8-Aug-10 18:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.