C++ 图形页面绘制示例:简单页面实现
以下是一个简单的用 C++ 编写图形页面的示例代码:
#include <iostream>
// 定义一个表示页面的类
class Page {
public:
Page(int width, int height) : width_(width), height_(height) {}
void drawLine() {
for (int i = 0; i < width_; ++i) {
std::cout << '-';
}
std::cout << std::endl;
}
void drawText(const std::string& text) {
std::cout << '|' << text << '|' << std::endl;
}
void drawPage() {
drawLine();
drawText('Welcome to My Page!');
drawLine();
drawText('This is a C++ Graphics Page');
drawLine();
}
private:
int width_;
int height_;
};
int main() {
Page page(30, 10); // 创建一个30列、10行的页面对象
page.drawPage(); // 绘制页面
return 0;
}
运行以上代码,会输出一个简单的页面,内容如下:
------------------------------
|Welcome to My Page! |
------------------------------
|This is a C++ Graphics Page |
------------------------------
请根据自己的需求修改页面的内容和大小。
原文地址: https://www.cveoy.top/t/topic/py1u 著作权归作者所有。请勿转载和采集!