Computer Applications
Write a program in Java to compute the perimeter and area of a triangle, with its three sides given as a, b, and c using the following formulas:
Java
Java Conditional Stmts
72 Likes
Answer
import java.util.Scanner;
public class KboatTriangle
{
public static void main(String args[]) {
Scanner in = new Scanner(System.in);
System.out.print("Enter first side: ");
double a = in.nextDouble();
System.out.print("Enter second side: ");
double b = in.nextDouble();
System.out.print("Enter third side: ");
double c = in.nextDouble();
double perimeter = a + b + c;
double s = perimeter / 2;
double area = Math.sqrt(s * (s - a) * (s - b) * (s - c));
System.out.println("Perimeter = " + perimeter);
System.out.println("Area = " + area);
}
}
Output
Answered By
34 Likes
Related Questions
Create a program in Java to find out if a number entered by the user is a Duck Number.
A Duck Number is a number which has zeroes present in it, but there should be no zero present in the beginning of the number. For example, 6710, 8066, 5660303 are all duck numbers whereas 05257, 080009 are not.
Mayur Transport Company charges for parcels as per the following tariff:
Weight Charges Upto 10 Kg. Rs. 30 per Kg. For the next 20 Kg. Rs. 20 per Kg. Above 30 Kg. Rs. 15 per Kg. Write a program in Java to calculate the charge for a parcel, taking the weight of the parcel as an input.
Employees at Arkenstone Consulting earn the basic hourly wage of Rs.500. In addition to this, they also receive a commission on the sales they generate while tending the counter. The commission given to them is calculated according to the following table:
Total Sales Commmision Rate Rs. 100 to less than Rs. 1000 1% Rs. 1000 to less than Rs. 10000 2% Rs. 10000 to less than Rs. 25000 3% Rs. 25000 and above 3.5% Write a program in Java that inputs the number of hours worked and the total sales. Compute the wages of the employees.
Write a program that will read the value of x and compute the following function: