微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在整数和浮点数之间转换

#include <stdio.h>

int main (void)
{
    float f1 = 123.125, f2;
    int i1, i2 = -150;
    char c = 'a';

    // floating to integer conversion
    i1 = f1;//
    printf (%f assigned to an int procedure %i\n, f1, i1);

    // integer to floating conversion
    f1 = i2;
    printf (%i assigned to a float procedure %f\n, i2, f1);

    // integer divided by integer
    f1 = i2 / 100;
    printf (%i divided by 100 produces %f\n, i2, f1);

    // integer divided by float
    f2 = i2 / 100.0;
    printf (%i divided by 100.0 produces %f\n, i2, f2);

    // type cast operator
    f2 = (float) i2 / 100;
    printf ((float) %i divided by 100 produces %f\n, i2, f2);

    return 0;
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐