File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -308,16 +308,21 @@ char **N()
308
308
}
309
309
*/
310
310
311
- /*
312
- char **Z()
311
+ char **Z ()
313
312
{
314
313
char **character = getCharGrid ();
315
314
316
- //Enter the character grid in ROWS X COLS
317
-
318
- return character;
315
+ character[0 ][0 ] =' _' ;
316
+ character[0 ][1 ] =' _' ;
317
+ character[0 ][2 ] =' _' ;
318
+ character[1 ][2 ] =' /' ;
319
+ character[1 ][1 ] =' _' ;
320
+ character[1 ][0 ] =' ' ;
321
+ character[2 ][0 ] =' /' ;
322
+ character[2 ][1 ] =' _' ;
323
+ character[2 ][2 ] =' _' ;
324
+ return character;
319
325
}
320
- */
321
326
322
327
// Lowercase
323
328
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 (straight);
9
- a.print (" N " );
9
+ a.print (" Z " );
10
10
return 0 ;
11
11
}
You can’t perform that action at this time.
0 commit comments