I have to write a program with a Luhn check that is a different variation than the default. Double all even place digits and add them together If the result of doubling, such as 2*9=18, is 2 digits, then use the sum of the single digits, such as 1+8=9 Add all odd place digits together The credit card number is valid if the even + the odd sum is divisible by 10.

The worst part about this is that you cannot change the inputted value into anything else; it must remain an integer.

link|improve this question
with integer division: x-(x/10)*10 = last digit or Mod(x,10) – belisarius Sep 20 '11 at 15:53
2  
And your question is? – Jean-François Corbett Sep 21 '11 at 12:56
feedback

closed as not a real question by interjay, VMAtm, belisarius, Nemo, Graviton Oct 6 '11 at 7:15

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

In psuedocode:

function sum_digits(n)
  s = 0

  while n > 0 do
    s = n mod 10
    n = n div 10
  end

  return s
end

function is_valid_cc_number( x )
  x_even = 0
  x_odd = 0

  while x > 0 do
    x_odd = x mod 10
    x_even = 2 * ((x div 10) mod 10)
    x = (x div 100)
  end

  while (x_even div 10) != 0 do
    x_even = sum_digits(x_even)
  end

  return ((x_even + x_odd) mod 10) == 0
end

Is that what you mean?

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.