这是一个家庭作业,对不起。例如,我无法制作用于计算单词中字符的工作程序:
- 我输入字符串:我的名字是彼得
- 程序询问要处理哪个单词..
- 我输入数字:3
- 程序说:第三个单词的计数是 2。
#include <stdio.h>
#include <conio.h>
#include <string.h>
int main()
{
char text[200],vards[20];
int i, length,lengthv, count=0,x;
printf("insert txt\n");
gets(text);
length=strlen(text);
for(i=0; i<length; i++)
{
if(text[i]!=' ' && text[i]!='.' && text[i]!=',')
{
printf("%c", text[i]);
if (text[i+1]=='\0')
count++;
}
else
{
if(text[i-1]!=' ' && text[i-1]!='.' && text[i-1]!=',')
{
count++;
printf("\n");
}
}
}
printf("detect lenght of wich name\n");
for(i=0;i<x;i++);
scanf("%s", &text);
lengthv=strlen(vards);
printf("\n The lenght of name is %d", lengthv);
getch();
return 0;
}