• Lenguaje

    Java usando Scanner

  • Descripción

    Lee dos valores desde el teclado y determinar si están en orden creciente o decreciente.

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

public class OrdenDeDosValores {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        double a, b;
        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();
        if(a<b)
            System.out.println("Orden creciente");
        if(a>b)
            System.out.println("Orden decreciente");
        if(a==b)
            System.out.println("Son iguales");
    }

}