CSC1020 Homework 3

Overview

Using JavaFX, write a simple calculator program that looks something like this:

calculator

Details

Formatting

HBox innerPane = new HBox();
.
.
.
innerPane.getChildren().addAll(firstOperand, operator, secondOperand, equals);
.
.
.
VBox pane = new VBox();
.
.
.
pane.getChildren().addAll(innerPane, result);

VBox

HBox

TextField