bool judgeSolutions(int a, int b, int c ) 
{
    if(a==0&&b!=0||a==0&&b==0&&c==0||b*b-4*a*c>=0)
    return true;
    else 
    return false;
}