Area solver for shapes is just one of the exercises given by most programming instructors. Some other exercises are the following:
1. Celsius to Fahrenheit Temperature Converter
2. Identify if odd or even number
3. Display numbers using a for loop
4. Solve for the area of a triangle
5. Fibonacci Series
Area is the size of the surface of an object. In this article, we will discuss about the formula and java code in solving for the area of a triangle.
Formula Area of Triangle
h = height
b = base
A = Area of a triangle
Java Code Area of Triangle
public class Area {
public static void main(String[] args) {
// solve for the area of a triangle given the height and width
double height = 3.5;
double width = 5;
double area;
area=height*width/2;
System.out.println(area);
}
}
Output Area of Triangle
Or you can also achieve it through user input where a user will provide the value for the height and width.
Java Code Area of Triangle
import java.util.Scanner;
public class Area {
public static void main(String[] args) {
// solve for the area of a triangle given the
//height and width will be provided by user
Scanner console=new Scanner(System.in);
System.out.println("Enter the triangle's width: ");
double height = console.nextDouble();
System.out.println("Enter the triangle's base: ");
double width = console.nextDouble();
double area=height*width/2;
System.out.println("The area of the triangle is "+area);
}
}
No comments:
Post a Comment