sumatresdouble java

Solutions on MaxInterview for sumatresdouble java by the best coders in the world

showing results for - "sumatresdouble java"
Irene
30 Sep 2017
1import java.util.Scanner;
2
3public class SumaTresDouble {
4
5	public static void main(String[] args) {
6		
7	Scanner teclado = new Scanner(System.in);
8		double numero1;
9		double numero2;
10		double numero3;
11		double resultado;
12		String mensaje;
13
14		//
15		
16		System.out.println("introduzca numero1: ");
17		numero1 = teclado.nextDouble();
18		System.out.println("introduzca numero2: ");
19		numero2 = teclado.nextDouble();
20		System.out.println("introduzca numero3: ");
21		numero3 = teclado.nextDouble();
22		
23		//
24		
25		resultado = numero1 + numero2 + numero3;
26		
27		mensaje = "" + numero1 + "+" + numero2 + "+" + numero3 + "=" + resultado;
28		
29		//
30		
31		System.out.println(mensaje);
32		
33		
34	}
35
36}