문제
URL : https://codeup.kr/problemsetsol.php?psid=23
소스코드
// 정수 2개 입력 받아 나눈 몫 출력
// input : 1 3
// output : 0
#include <iostream>
using namespace std;
int main()
{
int n1, n2;
cin >> n1 >> n2;
cout << (n1 / n2);
return 0;
}
URL : https://codeup.kr/problemsetsol.php?psid=23
// 정수 2개 입력 받아 나눈 몫 출력
// input : 1 3
// output : 0
#include <iostream>
using namespace std;
int main()
{
int n1, n2;
cin >> n1 >> n2;
cout << (n1 / n2);
return 0;
}