Hello,
Answer:
--//Triangles Algorithm
Declare the variables of the side of each triangle, in this case, a, b, and c, and input them.
If a^2 == b^2 + c^2
display "This triangle IS right-angled."
Else
display "This triangle is NOT right-angled
Step-by-step explanation:
The meaning of the word "algorithm" in this situation would be the coding of the program that you are assigned to create. I'll use Python in this. Display, in this case, will mean "print"