Description: The following program takes three numbers as input and checks to see if these may form a triangle or not. Primary Inputs: Three numbers Primary Output: Determine the type of triangle formed by the input numbers (if any). Platform Used: JDK 1.6 with Notepad. Java import java.io.*; class TriangleTest { public static void main(String[] args) { Console con = System.console(); ...