Manual de neat beans ide 7 xd

8
MANUAL DE NEAT BEANS IDE 7 .2 POR: JESSICA KARINA GARCÍA LÓPEZ

Transcript of Manual de neat beans ide 7 xd

Page 1: Manual de neat beans ide 7 xd

MANUAL DE NEAT BEANS IDE 7 .2

POR: JESSICA KARINA GARCÍA LÓPEZ

Page 2: Manual de neat beans ide 7 xd

• PRIMERO NOS METEMOS A NEATBEANS Y ESCOGEMOS NUEVO PROYECTO.

Page 3: Manual de neat beans ide 7 xd

• ESCOGEMOS JAVA APPLICATION LE DAMOS NEXT, LUEGO LE PONES NOMBRE AL PROYECTO Y LE DAMOS A FINISH.

Page 4: Manual de neat beans ide 7 xd

• CUANDO SE ABRA LE DAREMOS CLICK DERECHO EN DONDE SE ENCUENTRA NUESTRO PROYECTO, LUEGO SE BRIRA UNA VENTANA Y ESCOGEREMOS NEW Y DESPUES JAVA CLASS.

Page 5: Manual de neat beans ide 7 xd

• LUEGO ESCRIBIREMOS DEBAJO DE PUBLIC CLASS -------- LO SIGUIENTE:

Page 6: Manual de neat beans ide 7 xd

• ESCRIBIREMOS LO SIGUIENTE:

• public static void main(String[] args) {

• byte nivel=1;

• short ataque=3;

• int defensa=7;

• long salud=18;

• System.out.println ("Mi nivel es"+nivel);

• System.out.println ("Mi ataque es"+ataque);

• System.out.println ("Mi defensa es"+defensa);

• System.out.println ("Mi salud es"+salud);

Page 7: Manual de neat beans ide 7 xd

• LUEGO LE DAMOS CLICK DERECHO A NUESTRA JAVA CLASS Y ESCOGEMOS LA OPCION RUN FILE.

Page 8: Manual de neat beans ide 7 xd

• Y VEMOS EL RESULTADO ABAJO SI ESTA VERDE ESTA CORRECTO NUESTRO PROGRAMA.