请问在c++程序中,出现的错误是什么意思 20

#include<iostream>#include<string>usingnamespacestd;structCandidate{stringname;intcou... #include<iostream>
#include<string>
using namespace std;
struct Candidate
{
string name;
int count;
};

int main(){
Candidate can[3] = {{"candidate1",0},{"candidat2",0},{"candidate3",0}};
string name;

for(int i = 0; i < 10 ; i++){
cout<<"Please input the candidate's name:"<<endl;
cin>>name;

for(int j = 0; j < 3 ; j++){
if(can[i].name == name) can[i].count ++;
}

}

for(int i = 0; i < 3; i++){
cout<<can[i].name<<": "<<can.count<<endl;
}
return 0;
}

error C2440: 'initializing' : cannot convert from 'char [11]' to 'struct Candidate'
No constructor could take the source type, or constructor overload resolution was ambiguous
文件后缀名为c,把第二个循环里的cout<<can[i].name<<": "<<can.count<<endl;
改为cout<<can[i].name<<": "<<can[i].count<<endl,还是出错:c:\program files\microsoft visual studio\vc98\include\eh.h(32) : fatal error C1189: #error : "eh.h is only for C++!"请问是什么原因?
Error executing cl.exe.
展开
 我来答
不是很无知
2008-03-16 · TA获得超过677个赞
知道大有可为答主
回答量:2137
采纳率:0%
帮助的人:1436万
展开全部
你的代码有很多错误。
1.你那个打印信息是说你给结构体数组初始化的时候发生错误。结构体不能那样初始化,应该是
Candidate can[3];
can[0].name="candidate1";
can[0].count = 0;
can[1].name="candidate2";
can[1].count = 0;
can[2].name="candidate3";
can[2].count = 0;
2.i你重复定义了,第二次int i,直接改成i就行了
3.你在比较输入与数组种名称的时候循环用的是j,可是判断用的是i,应该改成
if(can[j].name == name) can[j].count ++;
这些都该了就行了
12f3210
2008-03-16 · TA获得超过299个赞
知道小有建树答主
回答量:443
采纳率:0%
帮助的人:425万
展开全部
#include<iostream>
#include<string>
using namespace std;
struct Candidate
{
string name;
int count;
};

int main(){
Candidate can[3] = {{"dzw",0},{"dzh",0},{"yjb",0}};
string name;

for(int i = 0; i < 10 ; i++){
cout<<"Please input the candidate's name:"<<endl;
cin>>name;

for(int j = 0; j < 3 ; j++){
if(can[j].name == name) can[j].count ++;
}

}

for(int i = 0; i < 3; i++){
cout<<can[i].name<<": "<<can[i].count<<endl;
}
return 0;
}

//你的程序没有大问题,只是第二个for循环那里改了下
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
zzk88
2008-03-16 · TA获得超过374个赞
知道小有建树答主
回答量:240
采纳率:0%
帮助的人:366万
展开全部
can.count错了应该是can[i].count吧
这是引用错误啊,根本没有can这个结构体,你却引用里面的元素

可能是VC不支持#include<iostream>
#include<string>这样的写法,你改成#include<iostream.h>
#include<string.h>吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
0鞋子0
2008-03-16 · TA获得超过105个赞
知道答主
回答量:141
采纳率:0%
帮助的人:0
展开全部
Candidate can[3] = {{"candidate1",0},{"candidat2",0},{"candidate3",0}};

... 貌似C++里不能这样赋值..C里面可以.
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
wzyinbai_du
2008-03-18 · 超过18用户采纳过TA的回答
知道答主
回答量:73
采纳率:0%
帮助的人:32.9万
展开全部
你把那个string name改为char name; 错误提示应该是访问越界了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(3)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式