class equation 
{
    public :
    int k;
    int l;
    int t;
    float x1_value;
    float x2_value;
    float b1 = sqrt(l^2 -4*k*t);
    float equation1; 
    equation();
    ~equation();
    
};
float void equation::equation1() {
    if (b1 == 0)
    {
        float x1_value = -l/2*k;
        cout << " joongen. " <<x1_value <<endl;
    }
    else if (b1 > 0)
    {
        float x1_value = ((-l + sqrt(b1) / (2*k));
        float x2_value = ((-l - sqrt(b1) / (2*k));
        cout << "x is 2"<< x1_value < " x 2 is  "<< x2_value <<endl;
    }
    else 
    {
       cout <<"imagine number ."<<endl;
    }
    return (0);
};
The code produces this error:
error: two or more data types in declaration of 'equation1'
 float void equation::equation1() {
                                ^
 
     
    