Why doesn't this method print its text? (java)
- by David
here's the method:
public static int chooseStrat ()
{
String[] strats = new String[1] ;
strats[0] = "0 - Blob" ;
int n ;
boolean a = false ;
while (a == false) ;
{
System.out.println ("Which strategy should the AI use?(#)") ;
printArrayS (strats) ;
n = getInt () ;
System.out.println…