问答详情
源自:2-8 自动类型转换

printf("%lf\n",d); 这里'%lf'是什么意思

只接触了%d、%c、%f等,%lf是什么

#include <stdio.h>
int main()
{
    char c = 'a';
    int n = c;   //将c赋值给n
    float f = c    ;  //将c赋值给f
    double d = c     ;//将c赋值给d
    printf("%d\n",n);
    printf("%f\n",f);
    printf("%lf\n",d);
    return 0;    
}


提问者:活在梦里3980862 2017-03-05 15:46

个回答

  • 大平太阳刀
    2017-03-05 15:50:58
    已采纳

    double(双精度浮点数)的输出格式符