C语言while循环语法要点 C语言while循环语法要点实例 C语言浮点数比较 C语言while循环语法要点 /* while2.c -- watch your semicolons */ #include <stdio.h> int main(void) { int n = 0; while (n++ < 3); /* line 7 */ printf("n is %d\n", n); /* line 8 */ printf("That's all this program does.\n"); return 0; } C语言while循环语法要点实例 C语言浮点数比较