首页 > 编程语言 > 详细

一个C++程序

时间:2018-04-15 22:47:24      阅读:207      评论:0      收藏:0      [点我收藏+]
#include<iostream>
using namespace std;
class Student
{public:
Student(int n,int a,float s):num(n),age(a),score(s){}
void total();
static float average();
private:
int num;
int age;
float score;
static float sum;
static int count;
};

void Student::total()
{sum += score;
count ++;
}

float Student::average()
{return(sum/count);
}

float Student::sum = 0;
int Student::count = 0;

int main()
{Student stud[3] = {
Student(1001,18,70),
Student(1002,19,78),
Student(1005,20,98)};
int n;
cout<<"please input the number of students:";
cin>>n;
for(int i = 0;i < n;i ++)
{stud[i].total();
}
cout<<"the average score of"<<n<<"student is"<<Student::average()<<endl;
return 0;
}
技术分享图片

一个C++程序

原文:http://blog.51cto.com/13615683/2103733

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!