Ticker

6/recent/ticker-posts

A simple program in Java.

 

Below is an example of a simple program written in Java programming language.

Change the text in the below code to make the program print "Hello Java" instead of "Hello C" and click on Submit.

We will learn more about the other aspects of the below code in the later sections.

 Q. No :- 10732

public class FirstProgram {

public static void main(String[] args) {

System.out.println("Hello Java");

}

}



Post a Comment

0 Comments