在c语言里,a=5/9,要用小数打出来,这么写?

日期:2022-02-26 07:09:03 人气:1

在c语言里,a=5/9,要用小数打出来,这么写?

float a;
a=5.0/9.0;
printf("%f",a);
    A+
热门评论