Advertisements
Advertisements
प्रश्न
Define a class Triplet with the following specifications:
Class name: Triplet
Data members: int a, int b, int c
Member methods:
void getdata(): to accept three numbers
void findprint(): to check and display whether the numbers are Pythagorean Triplets or not.
कोड लेखन
उत्तर
import java.util.*;
class Triplet
{int a, b, c;
void getdata()
{Scanner in = new Scanner(System.in);
System.out.println("Enter the length of the hypotenuse");
c = in.nextInt();
System.out.println("Enter the other two sides of the triangle");
a = in.nextInt();
b = in.nextInt();
}
void findprint()
{if ((a * a) + (b * b) == (c * c))
System.out.println("YES! It is a Pythagorean Triplet");
else
System.out.println("NO. It is not a Pythagorean Triplet");
}
public static void main(String args[])
{Triplet t = new Triplet();
t.getdata();
t.findprint();
}
}
shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?