C语言自减运算符实例 C语言自增前缀后缀实例 C语言语句实例 C语言自减运算符实例 #include <stdio.h> #define MAX 100 int main(void) { int count = MAX + 1; while (--count > 0) { printf("%d bottles of spring water on the wall, " "%d bottles of spring water!\n", count, count); printf("Take one down and pass it around,\n"); printf("%d bottles of spring water!\n\n", count - 1); } return 0; } C语言自增前缀后缀实例 C语言语句实例