A small collection of three Java Swing desktop apps built in Apache NetBeans IDE 16:
- 🎮 Cross N Knot - Tic‑Tac‑Toe game
- 🧮 SI Calculator - standard arithmetic calculator
- 🔬 Scientific Calculator - extra math functions
Tip: The easiest way to run these is via NetBeans (projects are already configured).
| Project | What it is | Run in NetBeans | Run as JAR |
|---|---|---|---|
CrossNKnot |
Tic‑Tac‑Toe (X/O) | ✅ | ✅ |
siCalculator |
Standard calculator | ✅ | ✅ |
simpleScientificCalculator |
Scientific calculator | ✅ | ✅ |
- Java JDK 8+
- Apache NetBeans IDE 16 (recommended)
- (Optional) Ant (NetBeans can run Ant projects automatically)
- Download / clone this repository
- Open Apache NetBeans
- Go to File → Open Project
- Open any of these folders:
CrossNKnotsiCalculatorsimpleScientificCalculator
- Right‑click the project → Run
NetBeans will use the project configuration to locate the correct Main Class.
You can find the jar file in each project’s Jar File/ folder, you can run them directly:
# Windows / macOS / Linux (same command)
java -jar CrossNKnot.jar
java -jar siCalculator.jar
java -jar simpleScientificCalculator.jarIf double‑clicking the JAR doesn’t work on Windows, run it from Command Prompt so you can see any error output.
For any project:
- Right‑click the project → Clean and Build
- NetBeans generates output in that project’s
dist/folder (common default)