Code:
int AmtOfQuotes = 1;
//A bit of help? The ! at the front means not.
while (!Quotes[AmtOfQuotes].equals("")){
AmtOfQuotes++;
}
AmtOfQuotes--;
Exception in thread "main" java.lang.NullP ointerException
at QuoteGenerator. main(QuoteGener ator.java:40)
Java Result: 1
Can someone help me?
Comment