diff --git a/Problems/Problem_8/Problem_8.md b/Problems/Problem_8/Problem_8.md new file mode 100644 index 0000000..5b7e44a --- /dev/null +++ b/Problems/Problem_8/Problem_8.md @@ -0,0 +1,18 @@ +# Write a program that takes three integers a, b, and c from the user and + +## if a² = b² + c² print a, b, c in that order +## else if b² = a² + c² print b, a, c in that order +## else if c² = a² + b² print c, a, b in that order + +## else print NOPE! + +``` +Enter three numbers(a,b,c): 3,4,5 + +5 3 4 + +Enter three numbers(a,b,c): 1.1.2 + +NOPE! + +```