You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Riley number is an integer whose digits are all even. For example 2426 is a Riley number but 3224 is not. Write a function named isRiley that returns 1 if its integer argument is a Riley number otherwise it returns 0. The function signature is int isRiley (int n)