初學(xué)C語言——while循環(huán)#includeint main(int argc,const char * argv[]){ int i=0; while(i<100){ i++; printf("%d\n",i); } return 0;}