I'm a teacher at a game development programming school, and I'm looking for some beginner-friendly JavaFX program ideas to assign as semester projects. My students aren't very advanced and are struggling with basic programming concepts. I've already planned a classic 'guess the number' game from 1 to 10, but I'm hoping to get some more suggestions that they can handle. Any ideas would be greatly appreciated!
3 Answers
Back in university, we worked on a project using JavaFX where we created an app that let you input a subreddit and it would fetch an image from there to set as wallpaper. It was simple but really helped me grasp JavaFX. Something like that might be a fun challenge for your students!
It sounds like your students need some really straightforward projects! Have you considered a Tic-Tac-Toe game? It's simple enough for beginners but still involves some interesting logic. Plus, it provides a nice introduction to using JavaFX's UI components like buttons and panels.
For an intro to graphics in JavaFX, you might want to assign something like a simple Minesweeper or Sudoku game. They're fun and will really teach them about handling user inputs and creating a responsive GUI. Plus, they'll learn to work with concepts like grids and event handling.

I think that's a great idea! It allows them to use buttons and if they're feeling adventurous, they can even try to make a more advanced version later.