Question
Notes:
◦You may use integers and insist the user enter integers.
◦You may not insist which order the user must enter each side, for example, you may not insist the user enter the hypotenuse first or last - so be sure to test all possibilities for a right triangle.
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
#include <iostream>using namespace std;
int main()
{
int side1, side2, side3;
cout << "Please enter in the length of side 1(only integers please): ";
cin >> side1;
cout << "Please enter in the side length of 2(only integers please): ";
cin >> side2;
cout << "Please enter in the side length of 3(only integers please): ";
cin >> side3;...