본문 바로가기

algorithm

[programmers] Java - Lv.0 몫 구하기

문제

 

 

 

 

 

풀이

 

class Solution {
    public int solution(int num1, int num2) {
        int answer = 0;
        answer = num1 / num2;
        return answer;
    }
}

 

이보다 더 간단하게 풀이하면

 

class Solution {
    public int solution(int num1, int num2) {
        return num1 / num2;
    }
}

 

이렇게도 코드 작성할 수 있다.