weat!!

冲刺第三天

今天11.17日,冲刺第三天,

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

会议时间是早上七点半,

今天会议的主要内容:

首先尝试编写一下代码,

在网上寻找了一下相关代码,

进行了对比。

这是我们今天编写的代码:

 Student(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;
 };
 Student(Student &p)
 {
  name=p.name;
  num=p.num;
  yuwen=p.yuwen;
  shuxue=p.shuxue;
  yinyu=p.yinyu;
  average=p.average;
  all=p.all;
 }
 ~Student(){};
 void Setname(string name);
 void Setnum(double num);
 void Setyuwen(double yuwen);
 void Setshuxue(double shuxue);
 void Setyinyu(double yinyu);
 void Setall(string name,double num,double yuwen,double shuxue,double yinyu);

posted on 2018-11-17 21:37  weat!!  阅读(100)  评论(0编辑  收藏  举报

导航