Answers for "go to a line in java"

9

java string next line

// its rn
String a = "Hello, "
String b = "there!"
System.out.println(a+b);//returns Hello, there
System.out.println(a+"rn"+b);//returns Hello, 
//there! //it will be on the next line!
Posted by: Guest on July-08-2020
0

how to write a line in java

n Textrn
Posted by: Guest on September-07-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language