javaPublicado por perla (3 intervenciones) el 16/06/2010 18:47:05como convertir este codigo a javaValora esta pregunta0Responder
Ecuacion cuadraticaPublicado por Javier Mariscal (94 intervenciones) el 18/06/2010 04:31:09import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; /** * * @author javier */ public class Main { /** * @param args the command line arguments */ public static void main(String[] args) { // TODO code application logic here BufferedReader br; int a; int b; int c; float x1; float x2; float raiz; int resultado; br = new BufferedReader(new InputStreamReader(System.in)); try { System.out.println("Introduce a:"); a = Integer.parseInt(br.readLine()); System.out.println("Introduce b:"); b = Integer.parseInt(br.readLine()); System.out.println("Introduce c:"); c = Integer.parseInt(br.readLine()); if (a == 0) { System.out.println("Error: division entre cero"); } else { raiz = (b * b) - 4 * (a * c); if (raiz < 0) { System.out.println("Error: raiz negativa(imaginaria)"); } else { x1 = ((-1 * b) + (float) Math.sqrt((double) raiz)) / (2 * a); x2 = ((-1 * b) - (float) Math.sqrt((double) raiz)) / (2 * a); System.out.println("X1:"+x1); System.out.println("X2:"+x2); } } } catch (IOException ex) { } System.exit(0); } }Valora esta respuesta0Comentar
RE:javaPublicado por Perla (3 intervenciones) el 21/06/2010 20:28:24manual de javaValora esta respuesta0Comentar
Manual JavaPublicado por Javier Mariscal (94 intervenciones) el 28/06/2010 00:09:24aqui ahi un link ponde te explican desde el inicio todo sobre java espero que te sirva de algo. http://manual-java.com/manualjava/introduccion-java.html http://www.java2s.com/Tutorial/Java/CatalogJava.htmValora esta respuesta0Comentar