课程首页地址:http://blog.csdn.net/sxhelijian/article/details/7910565
【项目2-用指针玩字符串】神奇的指针哟,指向整型的指针int *p1,可以操作整型数组int a[];指向字符型的指针char *p2,可以操作字符数组(字符串)char str[];指向指针的指针可以操作二维数组。更灵活的是,在函数的传递中,指针、数组名在一定程度上可以互换。
本项目试图通过编制操作字符串的函数,实现字符串的操作。
请编制函数,其功能是对字符串的进行操作
4、
功能:统计句子str中单词的个数
用数组名作形参:int awordnum(char str[])
用指针作形参:int pwordnum(char *str)
参考解答:
//4. 统计句子str中单词的个数(字符数组实现) #include <iostream> using namespace std; int awordnum(char str[]); //int pwordnum(char str[]); //看懂int awordnum(char str[]);基础上自行实现 int main(void) { char s[81]; cout<<"请输入一个句子:"; gets(s); cout<<"\""<<s<<"\"中的单词数为:"<<awordnum(s)<<endl; return 0; } int awordnum(char str[]) { int i,num=0,word=0; //word为0,代表现在并不 for(i=0;(str[i]!='\0');i++) { if (str[i]==' ') word=0; else if (word==0) { word=1; num++; } } return num; }