[Codility] Lession5. CountDiv - 문제풀이
Description 세 개의 정수 A, B, K가 주어지면 A~B범위 내의 정수를 K로 나눌 수 있는 수를 반환합니다 Write a function: class Solution { public int solution(int A, int B, int K); } that, given three integers A, B and K, returns the number of integers within the range [A..B] that are divisible by K, i.e.: { i : A ≤ i ≤ B, i mod K = 0 } For example, for A = 6, B = 11 and K = 2, your function should return 3, because there are three..