There is not much to simplify and improve. The only thing I would like to change is the line that calculates the area. Perhaps use float to avoid rounding to int.
float area = (float)(base * height) / 2;
In this case, you can also change the inputs to floats:
float base = in.nextFloat();
...
float height = in.nextFloat();
Then change the calculation line to:
float area = base * height / 2;
.
float . , double.