Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- static int CountDigit5(int number)
- {
- int cnt = 0;
- while (number != 0)
- {
- int digit = number % 10;
- if (digit == 5)
- {
- cnt++;
- }
- number /= 10;
- }
- return cnt;
- }
- static int Ending5(int number)
- {
- int cnt = 0;
- while (number != 0)
- {
- int digit = number % 10;
- if (digit == 5)
- {
- cnt++;
- }
- else
- {
- break;
- }
- number /= 10;
- }
- return cnt;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement