Skip to content
최재강 edited this page Jan 4, 2020 · 4 revisions

새롭게 알게 된 부분.

manchan

cout<<fixed;
cout.presicion(10);
cout<<road(0,0,check);

cout으로 소수점 처리를 시도하였으나 첫번째 출력이 10자리가 아닌 11자리로 출력되는 알수없는 현상이 나타남.

printf의 소수점 처리방식을 이용하여 해결

printf("%.10lf\n", road(0, 0, check));
Clone this wiki locally