为了账号安全,请及时绑定邮箱和手机立即绑定

为什么在for循环里面 getScore()的值是错误的

#include <iostream>

#include<cstdlib>

#include<string>

using namespace std;


class student

{

public:

void setName(string _name)

    {

m_strName=_name;

}

string getName()

{

return m_strName;

}

void setGende(string _gende)

{

m_strGende=_gende;

}

string getGende()

{

return m_strGende;

}

int getScore()

{

return m_iScore;

}

void study(int _score)

{

m_iScore+=_score;

}


private:

string m_strName;

string m_strGende;

int m_iScore;

};




int main( )

{

student stu;

cout<<"input student name:"<<endl;

string name;

getline(cin,name);

stu.setName(name);

//cin.sync();

//cout<<stu.getName()<<endl;

cout<<"input gende:"<<endl;

string gende;

getline(cin,gende);

stu.setGende(gende);

//cin.sync();

//cout<<"input score"<<endl;

int score;

for (int i=1;i<4 ;i++ )

{ cout<<"input score"<<i<<"科"<<endl;

cin>>score;


stu.study(score);

}

//cin.sync();

/*int score;

cin>>score;

stu.study(score);

cin>>score;

stu.study(score);

cin>>score;

stu.study(score);  这样做可以值是正确的  为什么上面for循环 值是错误的 求解*/

cout<<stu.getName()<<"\n"<<stu.getGende()<<"\n"<<stu.getScore()<<endl;


return 0;

}


正在回答

1 回答

study函数之前不需要加initScore函数吗?

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C++远征之封装篇(上)
  • 参与学习       103410    人
  • 解答问题       701    个

封装--面向对象的基石,本教程力求帮助小伙伴们即学即会

进入课程

为什么在for循环里面 getScore()的值是错误的

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信