A company that issues check-cashing cards uses an algorithm to create card numbers. The algorithm adds the digits of a…
A company that issues check-cashing cards uses an algorithm to create card numbers. The algorithm adds the digits of a four-digit number, and then adds a fifth digit of 0 or 1 to make the sum of the digits even. The last digit in the number is called the check digit. Complete the seven problem-solving steps to develop a solution that accepts a four-digit number into one variable, adds the check digit, andprints the original number and the new number. Test your flowchart with the followingdata: Original (47371) and 4631 (46310).Hint: You may use any built-in VB6 functions and the principle of concatenation of strings.