मराठी

Define a class Triplet with the following specifications: Class name: TripletData members: int a, int b, int cMember methods:void getdata(): to accept three numbersvoid findprint(): - Computer Applications

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
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 6: Class as the Basis of all Computation (Objects and Classes) - EXERCISES [पृष्ठ ३८४]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 6 Class as the Basis of all Computation (Objects and Classes)
EXERCISES | Q VI. 2. | पृष्ठ ३८४
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×