write in c++ vs code with a screenshot of the code
In this question, you will be writing a main() driver function through which you will give the end user the option to choose from the following options: Calculate the Likeness Score between two sequences of equal length Find the Best Likeness Score between two sequences of unequal length Find the Winner among the sequences of 3 players and the Golden Sequence Exit The menu will run on a loop, continually offering the user four options until they opt to quit. You need to fill in the code for each of the options. Be sure to use the functions you wrote in questions 4-6. Below is an Sample Run of the main program depicting different cases: - Menu - 1: Calculate the Likeness Score between 2 strings of equal length 2: Calculate the Best Likeness Score between 2 sequences of possibly different length. 3. Find the winner among sequences of 3 players and a Golden Sequence 4: Exit Enter your choice (1-4) 1 Enter Sequence 1 HODAS) Enter Sequence 2 DAD85) Likeness Score: 1.66667 For this submission, you must paste your entire program: the main function, all the necessary previous functions, and #includes In this question, you will be writing a main() driver function through which you will give the end user the option to choose from the following options: Calculate the Likeness Score between two sequences of equal length Find the Best Likeness Score between two sequences of unequal length Find the Winner among the sequences of 3 players and the Golden Sequence Exit The menu will run on a loop, continually offering the user four options until they opt to quit. You need to fill in the code for each of the options. Be sure to use the functions you wrote in questions 4-6. Below is an Sample Run of the main program depicting different cases: - Menu - 1: Calculate the Likeness Score between 2 strings of equal length 2: Calculate the Best Likeness Score between 2 sequences of possibly different length. 3. Find the winner among sequences of 3 players and a Golden Sequence 4: Exit Enter your choice (1-4) 1 Enter Sequence 1 HODAS) Enter Sequence 2 DAD85) Likeness Score: 1.66667 For this submission, you must paste your entire program: the main function, all the necessary previous functions, and #includes