Answers for "code hello world java"

46

java hello world

public class Main {

  public static void main(String[] args) {
  	System.out.println("Hello, World!"); 
  }
  
}
Posted by: Guest on April-29-2020
0

hello world java

public class Main {

  public static void main(String[] args) {
    HelloWorld helloworld = new HelloWorld("Hello World");
    helloworld.Print()
  }
  static class HelloWorld{
    String sentence;
    HelloWorld(String sentence){
      this.sentence = sentence;
    }
    static void Print(){
      System.out.println(sentence)
      }
}
Posted by: Guest on July-27-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language