赞
踩
有⼀个字符串“ Hello,World! ”统计单词的个数。我们规定,连续字母或数字是⼀个单词,如“abc123”是⼀个单词,空格或其他任何字符分开的都不是⼀个单词。
以下函数功能是计算⼀个字符串中单词的个数。
- #include <stdio.h>
- #include <string.h>
-
- int main()
- {
- char str[] = "Hello, World!";
- int length = strlen(str);
- printf("字符串 '%s' 的长度为: %d\n", str, length);
-
- return 0;
- }
输出结果如下
字符串 'Hello, World!' 的长度为: 13
计算字符串中单词个数有多种算法。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。