Search Logic Blocks

Sunday, December 29, 2019

Java: Write your first java program and print your name on the console.

Suppose your name is John Smith - 

Class myName (myName.java)

public class myName {
public static void main(String args[]) {
System.out.println("John Smith");
}
}
Note: All code can be found at Github link.

No comments: