#include <iostream>
#include <iomanip>
using namespace std;
int main(void) {
int a, b;
cin >> a >> b;
cout << fixed << setprecision(10) << (double)a / b << endl;
return 0;
}
'Programming > Tip&Informaion' 카테고리의 다른 글
EOF (테스트 케이스가 주어지지 않았을 때) (0) | 2016.02.18 |
---|---|
[c++] 공백까지 입력받기 (0) | 2016.02.11 |
[비주얼 스튜디오] [펌] 디버깅 시 빌드하시겠습니까? 확인창 안 뜨는 해결책 (0) | 2015.12.01 |
[C++] 시간 측정 (0) | 2015.11.29 |
[C++] 복사생성자 (0) | 2015.11.29 |