This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cs50.h> | |
#include <math.h> | |
#include <stdio.h> | |
long long int cardNumber; | |
int cardDigits(long long int num); | |
int first2digits(long long int num); | |
int luhn(long long int card); | |
int main(void) |
NewerOlder