自制c++题目《类操作综合》

发布时间:2024年01月06日

1.题目考点:三种构造函数,运算符重载,类成员指针调用

2.题目要求:按主函数要求实现下列语句

int main()
{
?? ?lei t;
?? ?printf("%d\n", t.a);
?? ?lei o(3, 4);
?? ?lei w(o);
?? ?printf("%d\n", *(w.b));
?? ?cout << o * 3;


?? ?return 0;
}

add 自制题目《类操作综合》. · 5d63407 · 王赫辰/c语言 - Gitee.com

文章来源:https://blog.csdn.net/whcwhc111111/article/details/135422245
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。