About 15,400,000 results
Open links in new tab
  1. Java Program to check Triangle is Equilateral, Isosceles, or Scalene

    Write a Java Program to check triangle is Equilateral, Isosceles, or Scalene with an example. Any triangle is equilateral if all sides of the triangle are equal. If any of the two sides are equal, then …

  2. Program To Check whether a Triangle is Equilateral, Isosceles or Scalene

    Sep 1, 2021 · Given three integers as X, Y, and Z representing the three sides of a triangle, the task is to check whether the triangle formed by the given sides is equilateral, isosceles, or …

  3. JAVA program that checks if a triangle is scalene, isosceles ...

    Oct 30, 2020 · I am trying to write java program to see if a triangle is scalene, isosceles, equilateral or not a triangle. With the integers I used it is supposed to be not a triangle (1, 1, …

  4. Java Program to check whether a triangle is ... - Tutorial World

    Scalene Triangle: Scalene triangle is a Triangle in which all sides are different or can say not equal. x = sc.nextInt(); System.out.println("Please enter the Y value: "); . y = sc.nextInt(); …

  5. Input angles and check equilateral, isosceles, or scalene triangle in Java

    Write a program in Java to input 3 angles of a triangle and check whether it is an equilateral, isosceles or scalene triangle.

  6. Triangle in Java on Exercism

    Determine if a triangle is equilateral, isosceles, or scalene. An equilateral triangle has all three sides the same length. An isosceles triangle has at least two sides the same length.

  7. Creating a Triangle with for Loops in Java - Baeldung

    Jan 25, 2024 · In this tutorial, we’ve learned how to print two common types of triangles in Java. First, we’ve studied the right triangle, which is the simplest type of triangle we can print in …

  8. Java program to check whether the triangle is equilateral

    Oct 16, 2021 · Given the sides of a triangle, write a program to check whether the triangle is equilateral, isosceles or scalene and find its area.

  9. Printing Triangle Pattern in Java - GeeksforGeeks

    Mar 13, 2023 · Given a number N, the task is to print the triangle-separated pattern. Triangle Separated Pattern: Pattern in which four triangles (left, down, right, up) are separated by …

  10. Check Triangle Type in Java - Stack Overflow

    Mar 18, 2020 · System.out.println("Scalene Triangle"); System.out.println("Isosceles Triangle"); Note: I slightly optimized the last condition, since you are using an if/else, some of the …

Refresh