A strangely frustrating Java Syntax error [closed]

quicktipp = [zahl][6]; doesn’t make any sense. I suspect you’re thinking you need to initialize the array at that point or something, but you don’t, you’ve already done that with double[][] quicktipp = new double[zahl][6];. So you can just delete that line and go straight to your quicktipp[0][i] = random; code.

Leave a Comment