怎么'< ='条件工作在c?以下简单的程序给出了奇怪的输出:(

时间:2018-04-05 14:59:40

标签: c loops output conditional-statements

register

输出

#include<stdio.h>
int main()
{
    float x=0;
    while(x<=.2)
    {
        printf("%f\n",x);
        x=x+0.2;
    }
    return 0;
}

但它应该给..

0.000000

我是第一次在stackoverflow上发布问题。请原谅我的愚蠢。

0 个答案:

没有答案