/* Yesterday I created a program that accepts user input     and returns result depending on the initial you entered*/ import java.io.*; public class PickEmployee{ public static void main(String[]args)throws IOException{     BufferedReader james=new       BufferedReader(new InputStreamReader(System.in));     char Z;      System.out.println(“Please enter a letter: “);       Z=(char)System.in.read(); […]

//My very first program called Hello World written in Java public class HelloWorld{ public static void main(String[]args){   System.out.println(“Hello World I’m James Jucutan!”); }

Hello World! Welcome to my page. Here is where I put all my work progress to be shared with everyone who also wants to learn how to write great programs.