Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write in C++ Problem Some credit card companies use Luhn algorithm to detect invalid credit card numbers The key thing in this algorithm is to
Write in C++ Problem Some credit card companies use Luhn algorithm to detect invalid credit card numbers The key thing in this algorithm is to find a check digit, which should be the rightmost digit in any credit card number In this task, you have to implement a version of Luhn algorithm using the instructions given below Step1: Read in credit card number as a series of digits into an array Ask the user to enter series of one digit positive numbers into a one dimensional array the number -1 is used to indicate the end of series, no need to read in -1 into the array The maximum size of the array is set to 20 Step2: Find sum1 (main should call a function passing array and size) Ignoring the last (right most digit) check digit of the credit card number, and moving left, double the value of every second digit and find the sum of these doubled numbers If the result of the doubling operation is a two digit number, you should add the digits of the doubled number before finding the sum. You must printout the numbers for sum1 these should be in the order (from left to right) as it appears on credit card Step 3: find sum2 (main should call a function passing array and size) Find the sum of all other numbers (last digit is not included in this sum as well). You must printout the numbers for sum1, these should be in the order (from left to right) as it appears on credit card Step 4: Calculate check sum Compute the total of sum1 and sum2 and multiply the result by 9, checksum is found by extracting the rightmost digit. Simplicity 542 5424 ad trom xpiratign date 05/13 04/30/16 L WALKER er0 Image courtesy: http://echeck.org/citi-simplicity-credit-card-review/ 5+5-18 2+2-4 1+1-2 2+2-4 4+4-8 6+6-12 8+8-16 sum1-1+4+248+4+8+3+ 1+0-1 1+2-3 1+6-7 sum2 444+8+1434 5+7 Total-29+32 -61 61 9 549 9 is the check sum digit
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started