| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 502 人关注过本帖
标题:函数调用的不可以执行!
只看楼主 加入收藏
面朝大海1994
Rank: 2
等 级:论坛游民
威 望:1
帖 子:27
专家分:38
注 册:2012-12-31
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:6 
函数调用的不可以执行!
#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
wp231957
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
来 自:神界
等 级:贵宾
威 望:423
帖 子:13688
专家分:53332
注 册:2012-10-18
收藏
得分:0 
函数调用的不可以执行!

这句话还真拗嘴  读不懂  中国国文博大精深

DO IT YOURSELF !
2013-05-08 09:21
rjsp
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:528
帖 子:9025
专家分:54030
注 册:2011-1-18
收藏
得分:0 
"函数调用的不可以执行!"  ------ 听不懂,有点像抗日片中鬼子的腔调^_^
2013-05-08 09:23
rjsp
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:528
帖 子:9025
专家分:54030
注 册:2011-1-18
收藏
得分:20 
程序代码:
#include <iostream>
#include <string>
using namespace std;

void search4( const char* str, size_t& letter, size_t& digit, size_t& space, size_t& other );

int main()
{
    cout << "input string:" << endl;
    string line;
    getline( cin, line );

    size_t letter, digit, space, other;
    search4( line.c_str(), letter, digit, space, other );

    cout << "letter = " << letter << '\n'
         << "space  = " << space  << '\n'
         << "digit  = " << digit  << '\n'
         << "other  = " << other  << endl;

    return 0;
}

void search4( const char* str, size_t& letter, size_t& digit, size_t& space, size_t& other )
{
    letter=0, digit=0, space=0, other=0;

    for( const char* p=str; *p; ++p )
    {
        char c = *p;

        if( (c>='A'&&c<='Z') || (c>='a'&&c<='z') )
            ++letter;
        else if( c>='0' && c<='9' )
            ++digit;
        else if( c == ' ' )
            ++space;
        else
            ++other;
    }
}
2013-05-08 09:35
面朝大海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.021998 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved