第05讲循环结构
- #include "stdio.h"void main(){ int i=10; while(i-->0)printf("*");} - 本程序的输出结果是什么?