File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -692,17 +692,20 @@ class Starwar : public Fonts
692
692
693
693
694
694
695
- /*
695
+
696
+
696
697
char **two ()
697
698
{
698
699
char **character = getCharGrid ();
699
-
700
700
// Enter the character grid in ROWS X COLS
701
-
701
+ character[0 ][1 ] = character[0 ][2 ] = character[0 ][3 ] = character[1 ][1 ] = character[1 ][2 ] = character[4 ][4 ] = character[5 ][1 ] = character [5 ][2 ] = character [5 ][3 ] = character [5 ][4 ] = ' _' ;
702
+ character[1 ][4 ] = ' \\ ' ;
703
+ character[3 ][2 ] = character[3 ][4 ] = character[4 ][1 ] = character[4 ][3 ] = ' /' ;
704
+ character[2 ][3 ] = ' )' ;
705
+ character[1 ][0 ] = character[2 ][5 ] = character[5 ][0 ] = character[5 ][5 ] = ' |' ;
702
706
return character;
703
707
}
704
708
705
- */
706
709
707
710
/*
708
711
char **three()
Original file line number Diff line number Diff line change @@ -227,6 +227,7 @@ ____ ____
227
227
|_|
228
228
```
229
229
```
230
+
230
231
___
231
232
|__ \
232
233
) |
Original file line number Diff line number Diff line change @@ -6,6 +6,6 @@ using namespace ascii;
6
6
int main ()
7
7
{
8
8
Ascii a = Ascii (starwar);
9
- a.print (" AbTB " );
9
+ a.print (" 2 " );
10
10
return 0 ;
11
11
}
You can’t perform that action at this time.
0 commit comments