Wednesday, October 30, 2013

1.01 - First program in JAVA

/*
 * Autor: Juan Antonio Ripoll
 * Date: 30/10/13
 * 
 * Create a program (in JAVA) to print Hello on screen 
 * and then print your name (in a separate line).
 * */

public class Main {

 public static void main(String[] args) {
  System.out.println("Hello\nJuan!");
 }

}

No comments:

Post a Comment