应该是print 和println
print是不带换行的输出
println是带换行的输出
String s = ....;
....println(s)相当于....println(s + "\n")