Skip to content

Latest commit

 

History

History
68 lines (51 loc) · 1.89 KB

README.md

File metadata and controls

68 lines (51 loc) · 1.89 KB

Coding Projects

Descriptions and usage instructions for various coding projects:

Project: 2048 In Bash.sh

Description: This project is an implementation of the game "2048" using a Bash shell script. It allows you to play the game in a terminal.

Usage:

  1. Open a terminal.
  2. Navigate to the directory containing the script.
  3. Run the script using the following command:
    bash 2048\ In\ Bash.sh
    

Project: 2048 In C++

Description: This project is an implementation of the game "2048" using a C++. It allows you to play the game in a terminal.

Usage:

  1. Open a terminal.
  2. Navigate to the directory containing the script.
  3. Run the script using the following command:
    g++ 2048.cpp -o 2048
    ./2048
    

Project: CandyCrush.cpp

Description: "CandyCrush.cpp" is a C++ implementation of the "Candy Crush" game. It provides a graphical interface for playing the game.

Usage:

  1. Open a terminal.
  2. Navigate to the directory containing the script.
  3. Run the script using the following command:
    g++ CandyCrush.cpp -o CandyCrush
    ./CandyCrush
    

FurnitureRental.cpp

Description: This C++ project appears to be related to a furniture rental management system. It allows you to manage furniture rental operations through a command-line interface.

Usage:

  1. Open a terminal.
  2. Navigate to the directory containing the script.
  3. Run the script using the following command:
    g++ FurnitureRental.cpp -o FurnitureRental

./FurnitureRental

truthtable.cpp

Description: This C++ project is likely related to generating truth tables for logical expressions. It can be used to compute and display truth tables for various logical operations

Usage:

  1. Open a terminal.
  2. Navigate to the directory containing the script.
  3. Run the script using the following command:
    g++ truthtable.cpp -o TruthTable
    ./TruthTable