[프로그래머스]두 수의 나눗셈

박예림·2023년 2월 22일
0

코테

목록 보기
6/132

        int solution(int num1, int num2) {
            double answer = ((double)num1 / (double)num2)*1000;
            return answer;
        }
profile
응애 나 아기개발자

0개의 댓글