#include <stdio.h>
int main(){ float a = 0.000000364 ; printf("%.1e\n", a) ;
return 1 ;}
위 값을 출력하면
3.6e-07
이라고 잘 나옵니다.
이것을 아래와 같이 출력하고 싶은데요.
3.6e-7
아시는 분 방법 알려주시면 알려주시면 고맙겠습니다.