java - Is there a way to fill out the console with print statements like matrix numbers? -
i'm trying make intro game i'm making want cooler text games. i'm not sure if awkward question there way me "fill" console numbers starting top left , spreading down , right, way until numbers hit bottom right corner? gives feeling random numbers being generated , sort of gives cool look. there possible way accomplish task? i'm thinking loops , such i'm not sure if works.
cool number method below
public void coolnumbers(int width){ for(int i=0; i<width; i++){ system.out.println(); for(int j =0; j<width; k++){ system.out.print("cool number here"); } } }
note: replace "cool number here" actual cool number prefer.
Comments
Post a Comment