Program: Write C++ program that asks a user to enter a part number to order. The rules for creating a part number are as follows:
- The first character must be an 'A', 'B', or 'C'.
- The second and third characters must be numeric; their value when taken as a pair must be between 10 and 49.
- The fourth character must be a lowercase letter.
- The fifth and sixth characters must be numeric; their values when taken as a pair must be between 22 and 66.
Show a message representing whether the entered part number is or is not valid.
Can you give the answer ASAP and there is no word limit?