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

1 개요[ | ]

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

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

int solution(int num1, int num2) {
    return 1000 * num1 / num2;
}

3 같이 보기[ | ]