Created
January 10, 2025 17:04
-
-
Save jswright61/edc84eb6381b3ee7e3e9b69ddc3a51bd to your computer and use it in GitHub Desktop.
Make Forward Function Java CSE1322 Lab 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private static char[][] make_forward(){ | |
| char[][] pixel = new char[4][13]; | |
| pixel[0][0]=' '; | |
| pixel[0][1]=' '; | |
| pixel[0][2]=' '; | |
| pixel[0][3]='_'; | |
| pixel[0][4]='_'; | |
| pixel[0][5]='_'; | |
| pixel[0][6]='_'; | |
| pixel[0][7]='_'; | |
| pixel[0][8]=' '; | |
| pixel[0][9]=' '; | |
| pixel[0][10]=' '; | |
| pixel[0][11]=' '; | |
| pixel[0][12]=' '; | |
| pixel[1][0]=' '; | |
| pixel[1][1]='/'; | |
| pixel[1][2]='|'; | |
| pixel[1][3]='_'; | |
| pixel[1][4]='|'; | |
| pixel[1][5]='|'; | |
| pixel[1][6]='_'; | |
| pixel[1][7]='\\'; | |
| pixel[1][8]='\''; | |
| pixel[1][9]='.'; | |
| pixel[1][10]='_'; | |
| pixel[1][11]='_'; | |
| pixel[1][12]=' '; | |
| pixel[2][0]='('; | |
| pixel[2][1]=' '; | |
| pixel[2][2]=' '; | |
| pixel[2][3]=' '; | |
| pixel[2][4]='_'; | |
| pixel[2][5]=' '; | |
| pixel[2][6]=' '; | |
| pixel[2][7]=' '; | |
| pixel[2][8]=' '; | |
| pixel[2][9]='_'; | |
| pixel[2][10]=' '; | |
| pixel[2][11]='_'; | |
| pixel[2][12]='\\'; | |
| pixel[3][0]='='; | |
| pixel[3][1]='\''; | |
| pixel[3][2]='-'; | |
| pixel[3][3]='('; | |
| pixel[3][4]='_'; | |
| pixel[3][5]=')'; | |
| pixel[3][6]='-'; | |
| pixel[3][7]='-'; | |
| pixel[3][8]='('; | |
| pixel[3][9]='_'; | |
| pixel[3][10]=')'; | |
| pixel[3][11]='-'; | |
| pixel[3][12]='\''; | |
| return pixel; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment