https://github.com/mrktsm/calculator
JavaFX-based Calculator App for CS216
https://github.com/mrktsm/calculator
css data-structures java javafx object-oriented-programming stack
Last synced: 12 months ago
JSON representation
JavaFX-based Calculator App for CS216
- Host: GitHub
- URL: https://github.com/mrktsm/calculator
- Owner: mrktsm
- License: apache-2.0
- Created: 2025-04-02T21:54:40.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-04-02T22:57:02.000Z (12 months ago)
- Last Synced: 2025-04-09T15:18:43.333Z (12 months ago)
- Topics: css, data-structures, java, javafx, object-oriented-programming, stack
- Language: Java
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Calculator
A simple JavaFX-based calculator developed for CS216 at Gettysburg College. Supports basic arithmetic operations, exponentiation, and a modern, styled UI.

## Features
- Basic arithmetic operations: addition, subtraction, multiplication, and division
- Exponentiation (power function)
- Parentheses support for operation precedence
- Dark-themed UI with gradient-styled buttons
- Responsive and user-friendly interface
## Requirements
- Java 8 or later
- JavaFX installed
## Usage
1. Clone this repository:
```sh
git clone https://github.com/yourusername/calculator-javafx.git
```
2. Navigate to the project directory:
```sh
cd calculator-javafx
```
3. Compile and run the application:
```sh
javac Calculator.java
java Calculator
```
## License
Licensed under the Apache License, Version 2.0. See [LICENSE](LICENSE) for details.
```
Copyright 2024
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
```