· software
[BOJ/C, C++] 단계별로 풀어보기 / 입출력과 사칙연산 ~ 1차원 배열
1008번 A/B 문제 링크 c include int main { double A, B; scanf'%lf %lf', &A, &B; printf'%.9lf', A / B; } 소수점 아래 9자리 이상을 출력하면 안전합니다. float는 약 6자리만 정확히 표현하므로 double을 사용...
1008번 A/B 문제 링크 c include int main { double A, B; scanf'%lf %lf', &A, &B; printf'%.9lf', A / B; } 소수점 아래 9자리 이상을 출력하면 안전합니다. float는 약 6자리만 정확히 표현하므로 double을 사용...
Machine Learning Metrics – An Intuitive Guide Machine Learning models are often judged by numbers, but many beginners and even practitioners misunderstand what...
!Basic Concepts of C Numeric Types — From Integers to SIMD, for LLM-Ready Thinkinghttps://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgra...