You want
System.out.print(n1 + "\n" + n2 + "\n" + n3 + "\n");
n1, n2, and n3 are Strings. So in order to put in a line break, you need to concatenate "\n" to them.
In your original code, you have:
n1 /n + n2 /n + n3 /n
First of all, /n is not correct. You're basically telling the compiler you want to compute n1 / n (a division operation), n2 / n, and n3 / n, and then add the results together. If the variable n doesn't exist, well, that's one error right there. Furthermore, even if you did have a variable called n, n1, n2, and n3 are Strings, and naturally it doesn't make sense to divide Strings by a number. Type mismatch.
So by doing
n1 + "\n"
you're taking the String stored in n1, concatenating it with "\n" (the character for line break, not "/n"), and then printing the result. Same goes for n2 and n3.