University of Uyo ( Uniuyo Java Project); Laboratory work 1
UNIUYO Java Project 1 Solution (1 and 2) Solution (3) Output UNIUYO Java Project 2 Solution Output UNIUYO Java Project 3 public class Project_3 { double side_a =20; double side_b =27.45; int side_c = 10; public static main(String[] args) { double s=(side_a + side_b + side_c)/2; duble ScaleneArea =Math.sqrt(s*(s-side_a)*(s-side_b)*(s-side_c)); System.out.printf(“%.3d is the area of the…