Question: The below code does not work as an option/answer: n=int(input('Enter value of n:')) print('pythogoren triplets:') for a in range(1,n+1): for b in range(1,n+1): for c


The below code does not work as an option/answer: n=int(input('Enter value of n:')) print('pythogoren triplets:') for a in range(1,n+1): for b in range(1,n+1): for c in range(1,n+1): if(a*a+b*b==c*c): print("(",a,",",b,",",c,")")
Problem 2. Pythagorean Numbers The lengths (a,b,c) of the three sides of a right triangle are related by this well-known formula: a2+b2=c2. A Pythagorean triple consists of three positive integer numbers bound by the above relation. An example of a triple is (3,4,5). Write program p2_....py that reads from the terminal a positive integer n and that computes and displays to the terminal all possible Pythagorean triples (a,b,c), where 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
