标签: 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上发布问题。请原谅我的愚蠢。