File tree Expand file tree Collapse file tree 2 files changed +10
-13
lines changed Expand file tree Collapse file tree 2 files changed +10
-13
lines changed Original file line number Diff line number Diff line change @@ -741,17 +741,14 @@ class Starwar : public Fonts
741
741
742
742
*/
743
743
744
- /*
745
- char **seven()
746
- {
747
- char **character = getCharGrid(ROWS,COLS);
748
-
749
- //Enter the character grid in ROWS X COLS
750
-
751
- return character;
752
- }
753
-
754
- */
744
+ char **seven ()
745
+ {
746
+ char **character = getCharGrid (6 , 8 );
747
+ character[0 ][1 ] = character[0 ][2 ] = character[0 ][3 ] = character[0 ][4 ] = character[0 ][5 ] = character[0 ][6 ] = character[1 ][1 ] = character[1 ][2 ] = character[1 ][3 ] = character[1 ][4 ] = character[5 ][2 ] = ' _' ;
748
+ character[1 ][0 ] = character[1 ][7 ] = ' |' ;
749
+ character[2 ][4 ] = character[2 ][6 ] = character[3 ][3 ] = character[3 ][5 ] = character[4 ][2 ] = character[4 ][4 ] = character[5 ][1 ] = character[5 ][3 ] = ' /' ;
750
+ return character;
751
+ }
755
752
756
753
char **eight ()
757
754
{
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ using namespace ascii;
5
5
6
6
int main ()
7
7
{
8
- Ascii a = Ascii (boomer );
9
- a.print (" 6 " );
8
+ Ascii a = Ascii (starwar );
9
+ a.print (" 7 " );
10
10
return 0 ;
11
11
}
You can’t perform that action at this time.
0 commit comments