C语言while循环实例 C语言布尔类型 C语言for循环实例 C语言while循环实例 // sweetie1.c -- a counting loop #include <stdio.h> int main(void) { const int NUMBER = 22; int count = 1; // initialization while (count <= NUMBER) // test { printf("Be my Valentine!\n"); // action count++; // update count } return 0; } C语言布尔类型 C语言for循环实例