-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f7f5103
commit 3a82434
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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."); | ||
} | ||
|
||
} | ||
} |