请问在c++程序中,出现的错误是什么意思
答案:5 悬赏:30 手机版
解决时间 2021-02-28 09:40
- 提问者网友:饥饿走向夜
- 2021-02-27 21:12
#include
#include
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:"< 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< }
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<改为cout<Error executing cl.exe.
最佳答案
- 五星知识达人网友:胯下狙击手
- 2021-02-27 21:29
你的代码有很多错误。
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 ++;
这些都该了就行了
全部回答
- 1楼网友:酒安江南
- 2021-02-28 00:05
Candidate can[3] = {{"candidate1",0},{"candidat2",0},{"candidate3",0}};
... 貌似C++里不能这样赋值..C里面可以.
- 2楼网友:不如潦草
- 2021-02-27 23:22
#include
#include
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:"<>name;
for(int j = 0; j < 3 ; j++){
if(can[j].name == name) can[j].count ++;
}
}
for(int i = 0; i < 3; i++){
cout<
- 3楼网友:白昼之月
- 2021-02-27 23:07
can.count错了应该是can[i].count吧
这是引用错误啊,根本没有can这个结构体,你却引用里面的元素
可能是VC不支持#include
#include这样的写法,你改成#include
#include吧
内存错误
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯