网盘链接:https://pan.baidu.com/s/1TKdHdeuDI8XPaakepvSLZQ?pwd=1688
提取码:1688
设计一个学生类,包括学号、姓名、成绩,并设计接口函数用来输出这些学生数据并计算平均分。并编写main函数进行测试:
输出如:
学号 姓名 成绩
1 张XX 98
2 王XX 90
3 XXX 89
平均成绩: XX
//**************************************************
#include <iostream>
#include <cstring>
using std::cin;
using std::cout;
using std::endl;
class mystring
{
private:
char *ptr;
public:
mystring(char *s = "xx")
{ 文章来源:https://www.toymoban.com/news/detail-795531.html
ptr = new char[strlen(s)+1];
strcpy(ptr,s);
}
mystring(const mystring &t)
{
ptr = new char[strlen(t文章来源地址https://www.toymoban.com/news/detail-795531.html
到了这里,关于嵌入式培训机构四个月实训课程笔记(完整版)-C++和QT编程第二天-C++类与对象练习题(物联技术666)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!