博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
实验三
阅读量:6427 次
发布时间:2019-06-23

本文共 806 字,大约阅读时间需要 2 分钟。

#ifndef GRAPH_H#define GRAPH_Hclass Graph {    public:        Graph(char ch, int n);           void draw();         private:        char symbol;        int size;};#endif#include "graph.h" #include 
using namespace std; Graph::Graph(char ch, int n): symbol(ch), size(n) {}void Graph::draw() { int i, j, k; for(i=1;i<=size;i++) { for (j = 1; j <= size - i; j++) cout << " "; for (k = 1; k <= 2 * i - 1; k++) cout << symbol; cout << endl; }}#include
#include "graph.h"using namespace std;int main() { Graph graph1('*',5); graph1.draw(); system("pause"); system("cls"); Graph graph2('$',7); graph2.draw(); system("pause"); return 0; }

转载于:https://www.cnblogs.com/hi-ypy/p/10759843.html

你可能感兴趣的文章
Android网络检测
查看>>
教你一招 Linux常见紧急情况处理方法
查看>>
Linux系统中Logrotate工具用法汇总
查看>>
ORACLE RMAN备份及还原
查看>>
大学的关键在大三
查看>>
JAVA常用集合总结 ArrayList
查看>>
疯狂Activiti6.0连载(3)Activiti开发环境搭建
查看>>
CentOS 7 vsftpd的安装和配置
查看>>
First blog with BloGTK2
查看>>
关于Linux网络配置
查看>>
删除表中多余的重复记录,只留有rowid最小的记录
查看>>
基础 HTML之目录问题(相对路径和绝对路径区别)
查看>>
<Properties>Java读取Properties
查看>>
React Native – 使用 JavaScript 开发原生应用
查看>>
linux怎样设置开机自动激活网卡配置
查看>>
Python time模块
查看>>
访问IIS元数据库失败的解决方法
查看>>
电子邮箱变成垃圾筒,是谁在给我们发送垃圾邮件?
查看>>
JavaBeansDataExchange could not instantiate result class
查看>>
树莓派airplay
查看>>