码迷,mamicode.com
首页 >  
搜索关键字:draw    ( 1687个结果
c++实验3
1.graph类 #ifndef GRAPH_H #define GRAPH_H // 类Graph的声明 class Graph { public: Graph(char ch, int n); // 带有参数的构造函数 void draw(); // 绘制图形 private: char sym ...
分类:编程语言   时间:2019-04-22 18:16:22    阅读次数:156
word公式编辑器平方怎么打出来
在编写Word文档公式时,不仅需要输入简单的公式,遇到复杂的公式时候感觉头都大了。这是因为我们没有找到适合的方法,下面小编以我们常会遇到的带根号,分数和上下标的公式为例,跟大家科普一下如何用亿图公式编辑器编写复杂公式。 在编写公式文档时,字母部分可直接用键盘输入,注意将输入法切换到英文输入。公式部分 ...
分类:其他好文   时间:2019-04-22 18:11:37    阅读次数:1538
C++ 实验3 类和对象
Part 2 #ifndef GRAPH_H #define GRAPH_H class Graph { public: Graph(char ch, int n); void draw(); private: char symbol; int size; }; #endif #include "g ...
分类:编程语言   时间:2019-04-22 00:42:49    阅读次数:154
实验3
graph项目: graph.h #ifndef GRAPH_H #define GRAPH_H class Graph { public: Graph(char ch,int n); void draw(); private: char symbol; int size; }; #endif gr ...
分类:其他好文   时间:2019-04-21 17:30:37    阅读次数:135
C++实验三
part2 graph.h #ifndef GRAPH_H#define GRAPH_H// 类Graph的声明 class Graph { public: Graph(char ch, int n); // 带有参数的构造函数 void draw(); // 绘制图形 private: char ...
分类:编程语言   时间:2019-04-21 15:56:44    阅读次数:129
实验三
part 2 #include <iostream> #include "graph.h" using namespace std; int main() { Graph graph1('*',5); graph1.draw(); system("pause"); system("cls"); Gr ...
分类:其他好文   时间:2019-04-21 14:27:29    阅读次数:111
实验三:类和对象
Part2 绘制图形 #include <iostream> #include "graph.h" using namespace std; int main() { Graph graph1('*',5); graph1.draw(); system("pause"); system("cls") ...
分类:其他好文   时间:2019-04-21 10:15:23    阅读次数:131
实验3
part2 graph 展示效果如下 part3 Fraction描述分数 1 #ifndef FRACTION_H 2 #define FRACTION_H 3 4 class Fraction { 5 public: 6 Fraction(int x = 0, int y = 1) : top( ...
分类:其他好文   时间:2019-04-20 21:14:06    阅读次数:118
L343 中译英
爱显摆的人遇事总喜欢标新立异。Showoffs never miss an opportunity to draw attention to themselves by some outrageous novelty. 体罚是野蛮的文化的遗风遗俗。Corporal punishment was a ...
分类:其他好文   时间:2019-04-20 09:22:41    阅读次数:145
实验三-类的实现
part1: void Graph::draw() { int i,a,b,t; a=size; b=size; t=1; while(a--) { for(i=0;i<b-1;i++) cout<<' '; for(i=0;i<t;i++) cout<<symbol; for(i=0;i<b-1; ...
分类:其他好文   时间:2019-04-20 09:20:39    阅读次数:157
1687条   上一页 1 ... 32 33 34 35 36 ... 169 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!