| brycematheson (33) | |||
I'm making a Sudoku game. When reading in from a file, I would like to convert all of my "0" to blank spaces. However, no matter what I do, those "blank spaces" always turn to "32" because, that's the value of a space on the ASCII Table. How do I change this? This is my code:
| |||
|
Last edited on
|
|||
| tfcoder (18) | |
|
When you say you want to convert 0s to blank spaces, do you mean for display purposes? In the array sudokuBoard, there needs to be some placeholder to represent the '0' or the 'blankspace'!
| |
|
Last edited on
|
|