Skip to content

Commit

Permalink
Pythagoras triplets check
Browse files Browse the repository at this point in the history
  • Loading branch information
suhanigupta23 authored Jan 29, 2024
1 parent f7f5103 commit 3a82434
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions Pythagorastripletscheck.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import java.util.*;
public class Program
{
public static void main(String[] args)
{
Scanner scn=new Scanner(System.in);
int a=scn.nextInt();
int b=scn.nextInt();
int c=scn.nextInt();
int n1=a*a;
int n2=b*b;
int n3=c*c;

if(n1+n2==n3||n2+n3==n1||n1+n3==n2)
{
System.out.println("The three values are Pythagoras triplets.");
}
else
{
System.out.println("The three values are not Pythagoras triplets.");
}

}
}

0 comments on commit 3a82434

Please sign in to comment.