冲刺第四天

今天是冲刺四天11.18日,

我们在三栋420进行了站立会议,

会议从7点半进行到8点总共半个小时,

会议内容确定了彼此的任务,

这次会议我给自己定了编写一部分代码的任务 ,

代码如下:

protected:
 double yuwen,shuxue,yinyu,average,all,num;
 string name;
};
void Student::Setname(string name)
{
 this->name=name;
}
void Student::Setnum(double num)
{
 this->num=num; 
}
void Student::Setyuwen(double yuwen)
{
 this->yuwen=yuwen;
}
void Student::Setshuxue(double shuxue)
{
 this->shuxue=shuxue;
}
void Student::Setyinyu(double yinyu)
{
 this->yinyu=yinyu;
}
void Student::Setall(string name,double num,double yuwen,double shuxue,double yinyu)
{
 this->name=name;
 this->num=num;
 this->yuwen=yuwen;
 this->shuxue=shuxue;
 this->yinyu=yinyu;
}

posted @ 2018-11-19 23:00  刘冇  阅读(106)  评论(0编辑  收藏  举报