本文主要是介绍c++实现计算课程总成绩和平均成绩,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
// main.cpp
// 2021_2
// Created by spurs on 2021/1/2.
// Copyright © 2021 spurs. All rights reserved.
// 计算课程总成绩和平均成绩
#include
using namespace std;
class Student{//创建student类
int score; //定义类的对象
static int total; //定义静态数据成员
public: //类为公有类型
Student(int s=0):score(s){
total+=s;
}
static void display(); //将函数声明为静态,返回值为空
};
int Student::total=0;//静态数据成员的初始化,赋值为0
void Student::display()//调用静态函数,实现数据的共享
{
cout<<total<<endl<<total/5;//第一个是总数,第二个是平均数
}
int main(int argc, const char * argv[]) {
int score;
cout<<“依次输入五次成绩:”<<endl;
for (int i=0; i<5; i++) {
cin>>score;
Student s(score);//该对象的作用域为for循环体,相当于创建五次,销毁五次
}Student s;
s.display();//函数调用
return 0;
}
输出:
依次输入五次成绩:
99 98 99 66 55
417
83Program ended with exit code: 0
这篇关于c++实现计算课程总成绩和平均成绩的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!