Divide by zero error, how do I fix this? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T08:57:24Z http://stackoverflow.com/feeds/question/160141 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this 1 Divide by zero error, how do I fix this? Scott 2008-10-01T22:55:02Z 2008-10-02T14:17:31Z <p>Hi all,</p> <p>C# novice here, when the int 'max' below is 0 I get a divide by zero error, I can see why this happens but how should I handle this when max is 0? position is also an int.</p> <pre><code> private void SetProgressBar(string text, int position, int max) { try { int percent = (100 * position) / max; //when max is 0 bug hits string txt = text + String.Format(". {0}%", percent); SetStatus(txt); } catch { } } </code></pre> <p>Many thanks</p> http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160146#160146 9 Answer by Simon for Divide by zero error, how do I fix this? Simon 2008-10-01T22:57:08Z 2008-10-01T23:01:49Z <pre><code>int percent = 0 if (max != 0) percent = (100*position) / max </code></pre> http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160148#160148 3 Answer by palehorse for Divide by zero error, how do I fix this? palehorse 2008-10-01T22:57:25Z 2008-10-01T22:57:25Z <p>Check for zero.</p> <pre><code>if ( max == 0 ) { txt = "0%"; } else { // Do the other stuff.... </code></pre> http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160149#160149 5 Answer by Adam Wright for Divide by zero error, how do I fix this? Adam Wright 2008-10-01T22:57:30Z 2008-10-01T22:57:30Z <p>Well, that entirely depends on the behaviour you want. If the maximum value of your program bar is zero, is it full? Is it empty? This is a design choice, and when you've chosen, just test for max == 0 and deploy your answer.</p> http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160150#160150 1 Answer by Swati for Divide by zero error, how do I fix this? Swati 2008-10-01T22:57:53Z 2008-10-01T22:57:53Z <ul> <li>You can throw an exception.</li> <li>You can do <code>int percent = ( max &gt; 0 ) ? (100 * position) / max : 0;</code></li> <li>You can choose to do nothing instead of assigning a value to percent.</li> <li>many, many other things...</li> </ul> <p>Depends on what you want.</p> http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160154#160154 1 Answer by Esteban Araya for Divide by zero error, how do I fix this? Esteban Araya 2008-10-01T22:58:29Z 2008-10-01T22:58:29Z <p>This is not a C# problem, it's a math problem. Division by zero is undefined. Have an if statement that checks whether max > 0 and only execute your division then.</p> http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160156#160156 0 Answer by Marcin for Divide by zero error, how do I fix this? Marcin 2008-10-01T22:59:15Z 2008-10-01T22:59:15Z <p>Well, if max is zero, then there is no progress to be made. Try catching the exception where this is called. That is probably the place to decide whether there is a problem or if the progress bar should be set at zero or at 100%.</p> http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160157#160157 0 Answer by Bob King for Divide by zero error, how do I fix this? Bob King 2008-10-01T22:59:35Z 2008-10-01T22:59:35Z <p>I guess the root question is: Does it make sense to even call this function where max is '0'? If yes, then I'd add special handling to it i.e.:</p> <pre><code>if (max == 0) { //do special handling here } else { //do normal code here } </code></pre> <p>If 0 doesn't make sense, I'd investigate where it's coming from.</p> http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160158#160158 0 Answer by ckramer for Divide by zero error, how do I fix this? ckramer 2008-10-01T22:59:43Z 2008-10-01T22:59:43Z <p>You would need a guard clause which checks for max == 0. </p> <pre><code>private void SetProgressBar(string text, int position, int max) { if(max == 0) return; int percent = (100 * position) / max; //when max is 0 bug hits string txt = text + String.Format(". {0}%", percent); SetStatus(txt); } </code></pre> <p>You could also handle the Divide by Zero exception, as your sample showed, but it is generally more costly to handle exceptions then to set up checks for known bad values.</p> http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160160#160160 0 Answer by Dre for Divide by zero error, how do I fix this? Dre 2008-10-01T23:00:25Z 2008-10-01T23:00:25Z <p>If you are using this for a download, you'll probably want to show 0% as I assume max would == 0 in this case when you don't KNOW the file size yet.</p> <pre><code>int percent = 0; if (max != 0) ...; </code></pre> <p>If you are using this for some other long task, I'd want to assume 100%</p> <p>But also, since position can never be between 0 and -1, so you'll probably want to drop the 100 * </p> http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160161#160161 0 Answer by ΤΖΩΤΖΙΟΥ for Divide by zero error, how do I fix this? ΤΖΩΤΖΙΟΥ 2008-10-01T23:00:53Z 2008-10-01T23:00:53Z <p>Convert your</p> <pre><code>int percent = (100 * position) / max; </code></pre> <p>into</p> <pre><code>int percent; if (max != 0) percent = (100 * position) / max; else percent = 100; // or whatever fits your needs </code></pre> http://stackoverflow.com/questions/160141/divide-by-zero-error-how-do-i-fix-this/160193#160193 0 Answer by Scott for Divide by zero error, how do I fix this? Scott 2008-10-01T23:14:58Z 2008-10-01T23:14:58Z <p>Wow, thanks!</p>