|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
我在用VS2013的时候发现了一个有趣的问题
就是它的字符串数组输入的时候,空格好像是用'\0'代替的
那这样怎么判断输入中有多少个单词啊,以下是我的代码
只能统计一个单词,我就很黑人问号,不知道大家是不是也存在这样的问题
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <ctype.h>
//输入一段英文,统计单词的数量
void tongji()
{
char arr[100];
int sum = 0;
int end = 0;
printf("请输入一段英文句子:");
scanf("%s",arr);
//用来检测字符串数组中实际是怎么输出的
for (int i = 0; i < 100; i++)
{
if (arr[i] != '\0')
{
end++;
}
else
{
break;
}
}
for (int i = 0; i < end; i++)
{
printf("%c",arr[i]);
}
printf("\n");
//用来统计字符串中单词的数量
for (int i = 0; i < 100; i++)
{
if (isspace(arr[i]))
{
sum++;
}
else if (arr[i-1] == '\0'&&arr[i]=='\0')
{
break;
}
else
{
continue;
}
}
printf("该句的单词的数目为:%d\n",sum+1);
}
int main()
{
tongji();
system("pause");
return EXIT_SUCCESS;
}
输入 :this is good
输出:
this
该句的单词的数目为:1 |
|