- float, double
scanf 시, float로 정의된 변수는 %f로 표시 / double로 정의된 변수는 %lf로 표시
printf 시, float,double 모두 %f로 표시하면 됨
- scanf 시, double은 %lf / printf 시, %.9lf
#include<iostream>
int main() {
double a, b;
scanf("%lf %lf", &a, &b);
printf("%.9lf", a / b);
}
- scanf 시, double은 %lf / printf 시, %.9f
#include<iostream>
int main() {
double a, b;
scanf("%lf %lf", &a, &b);
printf("%.9f", a / b);
}
'코딩테스트 > programming_C++' 카테고리의 다른 글
baekjoon #10818_최소, 최대_c++ (0) | 2021.10.24 |
---|---|
baekjoon #10951_A+B - 4_c++ (0) | 2021.10.24 |
baekjoon #2439_별 찍기 - 2_c++ (0) | 2021.10.24 |
baekjoon #15552_빠른 A+B_c++ (0) | 2021.10.24 |
baekjoon #2588_곱셈_c++ (0) | 2021.10.24 |