본문 바로가기

Coding Test/프로그래머스

[프로그래머스/자바] n의 배수

class Solution {
    public int solution(int num, int n) {
        return num % n == 0 ? 1 : 0;
    }
}