Estoy practicando java, necesitaria un ide y un compilador sencillo de instalar, para un novato, algo asi como TPascal

Recomendaciones?
Posted 04 May 2010 - 08:20 AM
Posted 04 May 2010 - 08:26 AM
Posted 04 May 2010 - 08:41 AM
Posted 04 May 2010 - 08:44 AM
Posted 04 May 2010 - 08:46 AM
aja y como es el negocio, descargo netbeans y ya puedo hacer mi hola mundo?
public class HolaMundo { public static void main(String[] args) { System.out.println("Hola Mundo"); } }
javac HolaMundo.java
java HolaMundo
Posted 04 May 2010 - 08:48 AM
Posted 04 May 2010 - 08:50 AM
ya recuerdo porque me gusta tanto DELPHI jajaja, bueno descargo netbeans y java jre y ahi si puedo compilar???
Posted 04 May 2010 - 09:02 AM
Posted 04 May 2010 - 09:07 AM
Posted 04 May 2010 - 11:51 AM
Posted 04 May 2010 - 12:01 PM
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package holamundo; /** * * @author sistemas */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here } }
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package holamundo; /** * * @author sistemas */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here System.out.println("Hola Mundo"); } }
Posted 04 May 2010 - 12:02 PM
Posted 04 May 2010 - 12:42 PM
Ahora tratare que el usuario ingrese datos desde el teclado, ya veremos como resulta todo
Posted 04 May 2010 - 12:52 PM
Ahora tratare que el usuario ingrese datos desde el teclado, ya veremos como resulta todo
Vas bien, me alegra ver que no hemos gastado en vano en tu educación
![]()
![]()
Salud OS
Posted 04 May 2010 - 04:52 PM
Posted 06 May 2010 - 02:51 PM