浮点类型

浮点类型可以存储具有不同精度级别的实数。#include stdio.hint main() {float myFloat;/* ~7 digits */

编程学习网为您整理以下代码实例,主要实现:浮点类型,希望可以帮到各位朋友。

浮点类型可以存储具有不同精度级别的实数。

#include <stdio.h>

int main() {
    float myfloat;    /* ~7 digits */
    double myDouble;  /* ~15 digits */
    long double myLD; /* typically same as double */
}

浮点数可以准确地表示大约7位数。double类型可以处理的大约是15个。

#include <stdio.h>

int main() {
    float myfloat = 12345.678;
    printf("%f", myfloat); /* "12345.677734" */
}

执行结果为:

12345.677734

可以通过以下方式将小数位数限制为两位。

#include <stdio.h>

int main() {
    float myfloat = 12345.678;

    printf("%.2f", myfloat); /* "12345.68" */
}

执行结果为:

12345.68

浮点数可以使用十进制,指数或十六进制表示法表示。通过添加Ee后跟小数指数来使用指数科学记数法。

十六进制浮点表示法使用Pp指定二进制指数。

#include <stdio.h>

int main() {//from w  w  w. j  av a  2 s .c  o  m
    float myfloat = 12345.678;

    double fDec = 1.23;
    double fExp = 3e2;   /* 3*10^2 = 300 */
    double fhex = 0xAA2; /* 10*2^2 = 40 */
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

#include stdio.h#include float.hint main() {printf(Storage size for float : %d \\n sizeof(float));
变量用于在程序执行期间存储数据。C中的简单类型由四种整数类型,三种浮点类型和char类型组成。在C语言中,数据类型的确切大小不固定。
#include stdio.hint main(void){float weight;float value;/* platinum equivalent*/printf(Please enter your weight in pounds: );