>>2 here
I'm working on an exponent calculator list, where when you type in a base and an exponent, it displays a list of that base with every exponent up to the one you specified. For example, if you choose base 2 and exponent 6, it'll display 2^1 = 2, 2^2 = 4, 2^3 = 8... 2^6 = 64.
Now, it's supposed to go onto a new line for each calculation displayed. Since this is all working in a loop, I just added + "\n" to the end of the statement. It doesn't work, though. I've tried <br />, \r\n, \n\r, \\r\\n, \\n,\\r, and every other possible solution I've found on online, but none work. I'm using NetBeans, so is it a problem with the text box that I made?