當(dāng)運(yùn)行以下程序時(shí),輸入 abcd ,程序的輸出結(jié)果是 : 【 9 】 。insert(char str[]){ int i;i=strlen(str);whil
當(dāng)運(yùn)行以下程序時(shí),輸入 abcd ,程序的輸出結(jié)果是 : 【 9 】 。
insert(char str[])
{ int i;
i=strlen(str);
while(i>0)
{ str[2*i]=str[i];str[2*i-1]='*'; i--;}
printf(" % s\n",str);
}
main()
{ char str[40];
scanf(" % s",str);insert(str);
}
正確答案:(9) 【 9 】 a*b*c*d*解析 : 在子程序中 , 如果條件成立 , 則執(zhí)行下面的語句 , 如果不成立 , 跳過。最后的輸出結(jié)果 是a*b*c*d* 。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。