码迷,mamicode.com
首页 > 其他好文 > 详细

程序里面带有浮点数,默认会自动转换为double类型存储

时间:2020-02-27 20:52:02      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:oat   sqrt   ble   common   std   test   mat   style   turn   

                                                    带有浮点数,默认会转换为double类型存储。 

                                                   

#include "common.h"
#include <stdio.h>
#include <stdlib.h>
#include <math.h>

static float test_equation = 0;

int main()
{


    //只有一个4.0类型,却可以说double类型
    test_equation = 18 / 4 * sqrt(4.0) / 8;
    

    while (1)
    {
        getchar();
    }

    return 0;
} 

 

程序里面带有浮点数,默认会自动转换为double类型存储

标签:oat   sqrt   ble   common   std   test   mat   style   turn   

原文地址:https://www.cnblogs.com/nowroot/p/12374122.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!