
C++学习笔记
文章平均质量分 68
guoliangstyle
这个作者很懒,什么都没留下…
展开
-
二级C++第一套综合应用题
// proj3.cpp: 定义控制台应用程序的入口点。 // /* guoliang write the program pleasure for all of you to use it this program is about to printout (6,8) write in c++ language and have test in vs 2017 */原创 2018-01-11 09:45:24 · 515 阅读 · 0 评论 -
拆分C++源程序
源程序为: // proj1.cpp: 定义控制台应用程序的入口点。 //使程序的输出为:1 2 3 4 5 6 7 8 9 10 // #include "stdafx.h" #include using namespace std; class MyClass { public: MyClass(int len) { array = new int[len]; arr原创 2018-01-09 22:13:39 · 1180 阅读 · 0 评论