how to print out a string in java code example
Example 1: 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");
}
}
Example 2: how to print something in java
System.out.print("one");
System.out.print("two");
System.out.println("three");
// RESULT = 'onetwothree'