Tuesday, 10 November 2020

First Java Program (To Print Hello World)

 public class MyFirstProgram // Creating a Class

{

  public static void main(String args[])// Creating the main Function

  {

   System.out.println("Hello World");// To print Hello World

  }

}

1 comment:

Java Program to count the total number of characters in a string

 //Java Program to count the total number of characters in a string import java.util.*; public class CountChars {     public static void mai...