Math, asked by mingamick4, 26 days ago

Express 0.134 bar in p/q form (only 3 and 4 have bar)

Answers

Answered by brainlyehsanul
90

Step-by-step explanation:

Solution :

Since x + 1 is the factor

Remainder = 0

∴ kx - 2x = 0

∴ kx = 2x

∴ k = 2

Attachments:
Answered by dear12
0

Step-by-step explanation:

import java.util.Scanner;

public class KboatHypotenuse

{

public static void main(String args[]) {

Scanner in = new Scanner(System.in);

System.out.print("Enter Perpendicular: ");

double p = in.nextDouble();

System.out.print("Enter Base: ");

double b = in.nextDouble();

double h = Math.sqrt(Math.pow(p, 2) + Math.pow(b, 2));

System.out.println("Hypotenuse = " + h);

}

}

Similar questions