题解 | #字符串最后一个单词的长度#
字符串最后一个单词的长度
https://www.nowcoder.com/practice/8c949ea5f36f422594b306a2300315da
#include <stdio.h>
#include <string.h>
int main(){
char str[5000];
while (scanf("%s",str)!=-1) {
}
printf("%d",strlen(str));
return 0;
}
腾讯成长空间 5341人发布
