Westonci.ca makes finding answers easy, with a community of experts ready to provide you with the information you seek. Get immediate and reliable solutions to your questions from a community of experienced experts on our Q&A platform. Discover in-depth answers to your questions from a wide network of professionals on our user-friendly Q&A platform.
Sagot :
Answer:
The program in Java is as follows:
import java.util.*;
public class PyTheorem{
public static void main(String [] args){
Random rNum = new Random();
int a = rNum.nextInt(17) + 5;
int b = rNum.nextInt(17) + 5;
System.out.println("a: "+a);
System.out.println("b: "+b);
double hyp = Math.sqrt(Math.pow(a,2)+Math.pow(b,2));
System.out.print("Hypotenuse: "+hyp);
}}
Step-by-step explanation:
This generates random number for a
int a = rNum.nextInt(17) + 5;
This generates random number for b
int b = rNum.nextInt(17) + 5;
Print a
System.out.println("a: "+a);
Print b
System.out.println("b: "+b);
Calculate the hypotenuse
double hyp = Math.sqrt(Math.pow(a,2)+Math.pow(b,2));
Print the calculated hypotenuse
System.out.print("Hypotenuse: "+hyp);
Thank you for your visit. We're dedicated to helping you find the information you need, whenever you need it. Thank you for your visit. We're dedicated to helping you find the information you need, whenever you need it. Get the answers you need at Westonci.ca. Stay informed with our latest expert advice.