Código:
No se poque no furula, algo no estoy entendiendo...Alguna ayuda?public class Ejerc_12 { Scanner entrada = new Scanner(System.in); int numero, array[] = new int[5]; boolean estado = true; public void insertarNum() { for(int i = 0 ; i < array.length ; i++) { System.out.println("Dame numero: "); numero = entrada.nextInt(); } } public boolean creciente() { for(int i = 1 ; i < array.length ; i++) { if(array[i] < array[i - 1]) estado = false; } return estado; } public boolean decreciente() { for(int i = 1 ; i < array.length ; i++) { if(array[i] > array[i - 1]) estado = false; } return estado; } public static void main(String[] args) { Ejerc_12 e = new Ejerc_12(); e.insertarNum(); if(e.decreciente() == true) { System.out.println("DECRECIENTE"); }else if(e.creciente() == true){ System.out.println("CRECIENTE"); }else System.out.println("DESORDENADO"); } }
Gracias.