Answers for "print a string java"

34

print in java

//print and create new line after
System.out.println("text");
System.out.println(String);
//You can use any variable type, not just strings, although
//they are the most common

//Print without creating a new line
System.out.print("text");
System.out.print(String);
Posted by: Guest on February-05-2020
2

print a string java

public class hello {

    public static void main(String[] args) {
	String hello = "Hello";
      System.out.println(hello);

    }
}

or 

public class hello {

    public static void main(String[] args) {
	
	System.out.println("Hello");
    }
}
Posted by: Guest on June-13-2020
1

print string in java

String data = "Some string";
System.out.println(data);
Posted by: Guest on October-21-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language