码迷,mamicode.com
首页 > 其他好文 > 详细

实验三

时间:2019-04-24 00:01:05      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:private   using   sys   com   实验   mic   use   class   mamicode   

#ifndef GRAPH_H
#define GRAPH_H

class Graph {
    public:
        Graph(char ch, int n);   
        void draw();     
    private:
        char symbol;
        int size;
};


#endif



#include "graph.h" 
#include <iostream>
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 <iostream>
#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; 
} 

技术图片技术图片

实验三

标签:private   using   sys   com   实验   mic   use   class   mamicode   

原文地址:https://www.cnblogs.com/hi-ypy/p/10759843.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!