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