|
Will the program work if the user enters a zero? A good answer might be:Hmmm... it should, since zero has a square root. |
Example OutputIt is good to get into the habit of worrying about what happens with special values. The program does happen to work with zero. Here is the output of the program for several values: C:\users\default\JavaLessons\chap16>java squareRoot Enter the number: 0.0000000000000000000003 The square root of 3.0E-22 is 1.732050807568877E-11 C:\users\default\JavaLessons\chap16>java squareRoot Enter the number: -12 Please enter a positive number C:\users\default\JavaLessons\chap16>java squareRoot Enter the number: 144.0 The square root of 144.0 is 12.0 |
QUESTION 20:Suggest a few other values with which the program should be tested. Click Here after you have answered the question |