C語言從鍵盤輸入一行英文,求出倒數第2個單詞的字符個數.

題目:

C語言從鍵盤輸入一行英文,求出倒數第2個單詞的字符個數.

解答:

#include
void main()
{
char c[100]={0};
int i=0,pos;
char *str=c,*estr;
gets(str);
estr = str;
while (str[i] != '\0')
{
if (str[i] == ' ')
pos = i;
i++;
}
i = 1;
while (estr[pos-i] != ' ')
i++;
printf("%d\n",i-1);
}

添加新評論

暱稱
郵箱
網站