/java-lab-problems

Archive of my solution codes to JAVA Lab Problems.

Primary LanguageJavaMIT LicenseMIT

java-lab-problems   License: MIT Download Code


INTRODUCTION

Archive of my solution codes to JAVA lab problems


GO TO


LAB SOLUTION CODES SCREENSHOTS
1 here here
2 here here
3 here here
4 here here
5 here here
6 here here


INSTRUCTIONS

BUILD & EXECUTE

  • For Windows users: firstly install make for executing Makefile, from this link;
  • For Linux users: make generally comes pre-installed;
    • if not, then run the following command: sudo apt-get install make

  • Now, run the following commands in the root directory:
    • for building class files:
       cd ./src
       make compile
    • for executing them:
       cd ./build
       make run
    • for cleaning build folder:
       cd ./build
       make clean      # for linux
       make clean(win) # for windows

  • NOTE: just compile & execute the code using the makefile as shown above, after that the executable will take you to any problem's solution from any lab as per your choice (see screenshots below).

SCREENSHOTS












Happy Java!