| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 585 人关注过本帖
标题:参数传递困惑?
取消只看楼主 加入收藏
lixang
Rank: 1
等 级:新手上路
帖 子:231
专家分:0
注 册:2006-7-15
收藏
 问题点数:0 回复次数:1 
参数传递困惑?

# include <iostream.h>
#include <string.h>

struct students {
char num [6];
char name [10];
int greag ;
};

students a[4]=
{
{"af321" , "周润法" , 78 }, {"ad321" , "水均益" , 93 },
{"aa321" , "张朝阳" , 85 }, {"ag321" , "刘翔" , 75 }
};

int search(students s[],int n, students x)//输入一个人名则显示其存在与否!
{
for(int i=0;i<n;i++)
{
if(strcmp(s[i].name,x.name)==0)
return i;
return -1;
}
}

void main()
{
int m=4;
students one_person_name[]="刘翔";//*one_person_name="刘翔";也输不过去!
//如何能将要查找的"人名"作为参数传递到search函数中去??
search(a,m,one_person_name);
}

搜索更多相关主题的帖子: 参数 困惑 
2006-08-28 18:08
lixang
Rank: 1
等 级:新手上路
帖 子:231
专家分:0
注 册:2006-7-15
收藏
得分:0 
以下是引用Magicmoon20在2006-8-29 10:36:01的发言:

程序改成这样就可以啦
#include <iostream>
#include <string>
using namespace std;
struct students {
char num [6];
char* name ;
int greag ;
};

students a[4]=
{
{"af321" , "周润法" , 78 }, {"ad321" , "水均益" , 93 },
{"aa321" , "张朝阳" , 85 }, {"ag321" , "刘翔" , 75 }
};

int search(students *s,int n, students x)
{
for(int i=0;i<n;i++)
{
if(strcmp(s[i].name,x.name)==0)
return i;
else
return -1;
}

}

void main()
{
int m=4;
students oneperson;
oneperson.name="刘翔";//cpp(31) : error C2440: '=' : cannot convert from 'char [5]' to 'char [10]'


cout<<search(a,m,oneperson);
}

E:\C++指针\hhhh\fd.cpp(31) : error C2440: '=' : cannot convert from 'char [5]' to 'char [10]'
There is no context in which this conversion is possible
Error executing cl.exe.

hhhh.exe - 1 error(s), 0 warning(s)

2006-08-29 11:33
快速回复:参数传递困惑?
数据加载中...
 
   



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

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