मराठी

For every natural number m>1; 2m, m2 − 1 and m2 + 1 form a Pythagorean triplet. Write a program to input the value of 'm' through console to display a 'Pythagorean Triplet'. - Computer Applications

Advertisements
Advertisements

प्रश्न

For every natural number m>1; 2m, m2 − 1 and m2 + 1 form a Pythagorean triplet. Write a program to input the value of 'm' through console to display a 'Pythagorean Triplet'. 

Sample Input: 3

Then 2m = 6, m2 - 1 = 8 and m2 + 1 = 10 

Thus 6, 8, 10 form a 'Pythagorean Triplet'. 

थोडक्यात उत्तर

उत्तर

import java.util.*;
public class Q2
{public static void main(String args[])
{Scanner in = new Scanner(System.in); 
int m, x, y, z; 
System.out.println("Enter a natural number");
m = in.nextlnt(); 
x = 2 * m;
y = m * m - 1;
z = m * m + 1; 
System.out.println(x + "," + y + " and " + z + " are Pythagorean triplets");
}}
shaalaa.com
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 1.07: Mathematical Library Methods - EXERCISES [पृष्ठ ८१]

APPEARS IN

अविचल Computer Applications [English] Class 10 ICSE
पाठ 1.07 Mathematical Library Methods
EXERCISES | Q VI. 2. | पृष्ठ ८१
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×