Skip to content

Commit

Permalink
이슈 #303에서 솔루션 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 19, 2024
1 parent bbfec0e commit 497ab3f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Programmers/두_수의_나눗셈.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include <string>
#include <vector>
#include <iostream>

using namespace std;

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

0 comments on commit 497ab3f

Please sign in to comment.