Ask the user to insert the length of two sides (b and c) of a triangle and the angle between them in degree (α), compute and print the length of the third side, a, by using this formula
a^2 = b^2 + c^2 - 2bc (cos (α))
(Note: To use the cosine function(cos), the angle must be in radians instead of degrees. To convert an angle from degree to radians, multiply the angle by π/180)
radians = (degree*PI/180);
a2 = pow(b,2)+ pow(c,2) - (2*b*c*cos(radians));
cout<<"Your answer is "<<a2<<endl;return 0 ;
ANY ERROR IN MY CODING? I CAN'T GET THE RIGHT ANSWER ACCORDING TO MY CALCULATION