Write a program to check the list of values contains the zero.
Input(Double Array) |
Output |
{12.34, 13.67, 90.87, 0.34, 54.23, 0.0, 43.89} |
true |
{0.125, 0.563, 0.789, 0.34, 0.0, 0.01, 0.89} |
true |
{-1.25, -4.56, -23.45, -45.67, 0.0, -100.23, -56.67} |
true |
{56.12, 78.25, 45.32, 25.89, 54.23, 43.89} |
false |
{-100.12, -200.34, -300.45, -400.98, -500.12, -600.65} |
false |
{} |
false |
null |
false |