This is simple java based app that simulates the snake and ladder game, we given input on co-ordinates of ladder positions and co-ordinates of snake positions.
Initially the players are at the position 0.
To simulate dice Random
function → random.nextInt(6)+1;
function of java is used which gives random value between 1
to 6
.
For more details refer the code.
This is terminal/command line based application in java, this allows you/team of people to manage their expenses and split the spent amount bewteen people involved in the expense. Demo of the output of the application is show below.
This is a terminal/command line based java application that implements Parking Lot System
Purpose The purpose of this app is to help in parking of 3 different types of vehicle
- Car
- Bike
- Truck Note: later more vehicles can be accommodated by expanding the scope of the application
This is a terminal/command line based java application that implements Project progress tracking like Trello or Jira Board
Purpose The purpose of this app is to help in tracking of various projects in an organization
- We can create Projects called
Board
, sub projects calledList
withinBoard
and we and further break down theList
into sub tasks calledCard
This is a simple terminal/command-line based java application for the game Tick Tack Toe
- Code is extensible to change the size of the grid
- Code is extensible to allow different types of pieces
- Code is extensible to allow more than 2 players/piece type