初学C语言——while循环#includeint main(int argc,const char * argv[]){ int i=0; while(i<100){ i++; printf("%d\n",i); } return 0;}