📄 main.cpp
字号:
#include<iostream.h>
#include"student.cpp"
void main()
{
Student zhang3;
Student li4;
Course math;
zhang3.AddCourse(&math,3.1);
li4.AddCourse(&math,4.5);
cout<<math.Average()<<endl;
cout<<zhang3.GetScore(&math)<<endl;
Course physics;
zhang3.AddCourse(&physics,4);
cout<<zhang3.Average()<<endl;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -