i'm a total beginner and don't know how to do this:

MYBANK ATM MENU
FORMAT: You will be submitting the C++ code as a CPP file. The source code file should use self documenting code and additional comments (as required) to improve code readability. The source code file must contain a file header.
The completed Assignment must be submitted via Blackboard. No e-mails please. Document name must be : lastName_Assignment_4 Your code must be saved as C++ file. The source code file must contain a file header formatted as specified below. The header information must be complete and accurate.
FILE HEADER
// CSC110 Semester
// Student Name :
// Assignment :
// Submission Date :
PROGRAM REQUIREMENTS
You are tasked to develop C++ program for an ATM machine Menu items.
At the beginning of the program ( as soon as the user launches the program) a greeting message is going to appear on the screen
=========================
Welcome to MyBank ATM
How can I help up you today?
=========================
and then user will be prompted by the main menu options.
1) Deposit
2) Withdraw
3) Transfer
4) View Balance
5) Noting. Exit
There must be a warning message if the user enters a choice (option) which is NOT given in the menu items ( i.e. 6).User must be prompted by “ Invalid Entry !” and the menu items must be showed again to give the user an opportunity to make correct selection.
The greeting message is going to appear just once at the beginning of the program
NOTE : You will be using WHILE and IF control arguments only (i.e. no need for FOR LOOP here)
If the user selects option 1: Program will display the following message on the screen.
=====================================================
DEPOSIT SECTION OF THE ATM SOFTWARE
=====================================================
Then shows the main menu for the user to make selection.
If the user selects option 2: Program will display the following message on the screen.
=====================================================
WITHDRAW SECTION OF THE ATM SOFTWARE
=====================================================
Then shows the main menu for the user to make selection.
If the user selects option 3: Program will display the following message on the screen.
=====================================================
TRANSFER SECTION OF THE ATM SOFTWARE
=====================================================
Then shows the main menu for the user to make selection.
If the user selects option 4: Program will display the following message on the screen.
=====================================================
VIEW BALANCE SECTION OF THE ATM SOFTWARE
=====================================================
Then shows the main menu for the user to make selection.
If the user selects option 5: Program will display the following message on the screen.
=====================================================
EXITING FROM THE ATM SOFTWARE
=====================================================
Then shows the main menu for the user to make selection.
If the user selects invalid option : User must be prompted by “ Invalid Entry !” message
=====================================================
INVALID ENTRY
=====================================================
And, then the main menu items must be displayed again to give the user an opportunity to make correct selection.

There's lots of resources out there on how to write the different parts of the application that you need to use, being if statements, while loops, and user input.

Try your best and come back with specific questions.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.