题解 | #字符串最后一个单词的长度#
字符串最后一个单词的长度
https://www.nowcoder.com/practice/8c949ea5f36f422594b306a2300315da
#include<stdio.h>
int main()
{
char c;
int count=0;
while(scanf("%c",&c)!=EOF){
count++;
if(c==' '){
count = 0;
}
}
printf("%d",count-1);
return 0;
}
为什么需要count 减1?
#悬赏#