| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 502 人关注过本帖
标题:函数调用的不可以执行!
取消只看楼主 加入收藏
面朝大海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
快速回复:函数调用的不可以执行!
数据加载中...
 
   



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

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