You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
double side3 = sqrt(pow(side1, 2) + pow(side2, 2) - 2 * side1 * side2 * cos(angle1)); //side 3 from user input (why the fuck does it come out in radians..)
cout << "Length of third side: " << side3 << "\n";