选择题   下列语句段将输出字符'*'的个数为______。
    int i=100;
    while(1){
    i--;
    if(i==0) break;
    cout<<'*';
    }
 
【正确答案】 B
【答案解析】