单项选择题

A、int n=1; while(!n) n++;
B、int n=1; do{n--;} while(n);
C、int n=1; do{n++;} while(n)
D、for(n=5;n<1;) ;>