• Lenguaje

    Java usando Scanner

  • Descripción

    Leer 3 números y calcular el promedio

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.util.Scanner;

public class PromedioDeTresNumeros {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        double a, b, c, promedio;
        System.out.print("Ingresa el valor de a: ");
        a = in.nextDouble();
        in.nextLine();
        System.out.print("Ingresa el valor de b: ");
        b = in.nextDouble();
        in.nextLine();
        System.out.print("Ingresa el valor de c: ");
        c = in.nextDouble();
        in.nextLine();
        promedio=(a+b+c)/3;
        System.out.println("Valor de promedio: " + promedio);
    }

}