单选题

在下列选项中,不能输出 100 个整数的是(  )。

A

for(int i=0;i<100;i++)

cout<<i;

B

int i=0;

 do

 {

 cout<<i;

 i++;

 }

 while(i<100);

C

int i=0;

 while(i<100)

 {

 cout<<i;

 i++;

 }

D

int i=0;

 while(i<100)

 {

 i++;

 if(i<100) continue;

 cout<<i;

 }

赣ICP备20007335号-2