资源简介
使用c++写的命令行下的绘图程序,以命令行的字符为像素点,模拟绘图流程
代码片段和文件信息
#include “proj08.h“
#include
int main(int char**args) {
Painter painter(args[1]);
painter.CreateCanvas();
auto result = painter.GetErrorLog().empty() ?
painter.GetCanvas() :
painter.GetErrorLog();
for (auto &line : result)
std::cout << line << “\n“;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 315 2018-11-11 20:38 main.cpp
文件 4253 2018-11-11 20:19 proj08.cpp
文件 2488 2018-11-11 19:43 proj08.h
文件 207 2018-11-11 20:47 说明.txt
- 上一篇:c语言实现的LRU算法
- 下一篇:c++三目运算符
评论
共有 条评论