Area of Triangle in java Get link Facebook X Pinterest Email Other Apps - May 13, 2017 * SOURCE CODE* class Triangle { public static void main(String ar[]) //main method { int b=2,h=6; //Define Integer System.out.println("Area of Triangle="+0.5*b*h); //output linea } } Read more
"Hello World in java" Get link Facebook X Pinterest Email Other Apps - May 01, 2017 Programme;- //Hello World in java :- class Hello //class define { public static void main(String ar[]) //main method { System.out.println("Hello World"); //Print statement } } Read more