Dividing by 0.0 does not throws DivideByZero Exception? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Dividing by 0.0 does not throws DivideByZero Exception?

Why does the statements A, B and C produces infinity while D alone throws DivideByZeroException? // unendlich A: Console.WriteLine(1.0/0); B: Console.WriteLine(1.0/0.0); C: Console.WriteLine(1/0.0); // DivideByZeroException D: Console.WriteLine(1/0);

18th Sep 2017, 9:41 AM
Sindhu
Sindhu - avatar
0 Answers