Let`s create "Hello World"  program in java --


Source Code:

  1. public class HelloWorld {
  2. public static void main(String[] args) {
  3.      System.out.print("hello world");
  4.      System.out.print(12345);
  5. }
  6. }

Output:


hello world
12345

0 comments:

Post a Comment