카테고리 없음

나머지 구하기

늘곰's 2023. 7. 25. 19:37
function solution(num1, num2) {
    var answer = -1;
    answer = num1 % num2;
    return answer;
}