Overview This repository contains two Java projects:
-
ATM System: A simple ATM system that allows users to perform basic banking operations such as withdrawing, depositing, and checking balance.
-
Number Guessing Game: A console-based number guessing game where the user tries to guess a randomly generated number within a specified range.
Both projects are implemented in Java and provide interactive functionalities for users.
ATM System
Features
-
Login: Users can log in with their UserID and PIN.
-
Withdrawal: Users can withdraw funds from their account.
-
Deposit: Users can deposit funds into their account.
-
Transfer: Users can transfer funds to another account.
-
Transaction History: Users can view their transaction history.
How to Use
- Clone the repository:
git clone https://github.com/divyanshi05/oibsip_taskno.git- Navigate to the ATMsystem directory:
cd ATMsystem- Compile the Java files:
javac *.java- Run the ATM System:
java MainNumber Guessing Game
Features
-
Random Number Generation: A random number between 1 and 100 is generated for each game.
-
User Interaction: Players can guess numbers and receive feedback on whether their guess is too high, too low, or correct.
-
Game Quitting: Players can choose to quit the game at any time.
How to Play
- Navigate to the numberGuessingGame directory:
cd ../numberGuessingGame- Compile the Java files:
javac numberGuess.java- Run the Number Guessing Game:
java numberGuess