在下列选项中,不能输出 100 个整数的是( )。
for(int i=0;i<100;i++)
cout<<i;
int i=0;
do
{
i++;
}
while(i<100);
while(i<100)
if(i<100) continue;