Post has been Discarded
Not yet a member? No problem!
Sign-up just takes a second.
Forgot your password?
Recover it now.
Already signed up?
Log in now.
Forgot your password?
Recover it now.
Not yet a member? No problem!
Sign-up just takes a second.
Remember your password?
Log in now.
3 Comments
NordlichReitersays...class Program
{
  private static float zero = 0;
  private static float one = 1;
  /********************
  * What is a float that would cause this to be possible
  * in an application?
  * IEEE standard has values for +infinity, and -Infinity,
  * there fore with the video above it is possible to define
  * an answer to the division by zero. By using
  * float values.
  ********************/
  static void Main(string[] args)
  {
   //Displays the value of float zero
   Console.WriteLine(zero.ToString());
   //Prints the quotent which is infinity
   Console.WriteLine((one / zero).ToString());
  }
NordlichReitersays...*discard
siftbotsays...Discarding this post - discard requested by original submitter NordlichReiter.
Discuss...
Enable JavaScript to submit a comment.