Exercise
First contact with java
Objetive
Write a java program to print Hello on screen and then print your name (in a separate line).
Example Code
// Main class named Program
public class Program
{
// Main method that is the entry point of the program
public static void main(String[] args)
{
// Print "Hello" to the screen
System.out.println("Hello");
// Print the name in a separate line
System.out.println("YourName"); // Replace 'YourName' with your actual name
}
}