Answers for "how to print the string in java"

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
0

java print method

public void print(String message) {
	System.out.println(message);
}

// Call it like this
print(String);
Posted by: Guest on March-12-2021

Code answers related to "how to print the string in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language