We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cout<<fixed; cout.presicion(10); cout<<road(0,0,check);
cout으로 소수점 처리를 시도하였으나 첫번째 출력이 10자리가 아닌 11자리로 출력되는 알수없는 현상이 나타남.
printf의 소수점 처리방식을 이용하여 해결
printf("%.10lf\n", road(0, 0, check));