执行下面的代码,进行条件循环。
#include <stdio.h> int main(int argc, char const *argv[]) { int i = 9; while (i) { printf("%d\n", i); i--; } return 0; }