标题:函数调用的不可以执行!
取消只看楼主
面朝大海1994
Rank: 2
等 级:论坛游民
威 望:1
帖 子:27
专家分:38
注 册:2012-12-31
结帖率:100%
已结贴  问题点数:20 回复次数:3 
函数调用的不可以执行!
#include<iostream>
using namespace std;
int main()
{
    int letter=0,digit=0,space=0,other=0;   
    int i;
    char *p,string[20];
    void search(char *p,char string[]);

    cout<<"input string:"<<endl;
    while((string[i]=getchar())!='\n')
    i++;

    search(p,string);
    cout<<"letter="<<letter<<endl<<"space="<<space<<endl<<"digit="<<digit<<endl<<"other="<<other<<endl;
   
    return 0;
}
void search (char *p,char string[])
{
    int letter=0,digit=0,space=0,other=0;
      p=&string[0];
    while(*p!='\n')
    {
        if(('a'<=*p)&&(*p<='z')&&('A'<=*p)&&(*p<='z'))
           ++letter;
        else if(*p==' ')
            ++space;
        else if((*p<='9')&&(*p>='0'))

            ++digit;
        else
            ++other;
        p++;
    }

}
搜索更多相关主题的帖子: void namespace include search return 
2013-05-08 09:20
面朝大海1994
Rank: 2
等 级:论坛游民
威 望:1
帖 子:27
专家分:38
注 册:2012-12-31
得分:0 
回复 3楼 rjsp
Thank you, may I say is too depression of the mouth

吃得苦中苦,方为人上人!
2013-05-08 15:06
面朝大海1994
Rank: 2
等 级:论坛游民
威 望:1
帖 子:27
专家分:38
注 册:2012-12-31
得分:0 
回复 2楼 wp231957
,Thank you

吃得苦中苦,方为人上人!
2013-05-08 15:06
面朝大海1994
Rank: 2
等 级:论坛游民
威 望:1
帖 子:27
专家分:38
注 册:2012-12-31
得分:0 
回复 4楼 rjsp
谢谢了,呵呵

吃得苦中苦,方为人上人!
2013-05-08 15:32



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-406475-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.694506 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved