Как остановить мой код от печати «По возрастанию» более одного раза? - PullRequest
0 голосов
/ 09 февраля 2020

Мой код:

Scanner sc=new Scanner(System.in);
    System.out.println("Type in your order(ex.5 7 4 6 8 3 9 2 0 1 - SPACES REQUIRED): ");
    String input=sc.nextLine();
    for(int i=0;i<input.length(); i++) {
    String[] b=input.split(" ");
    if(Integer.valueOf(b[i]) < Integer.valueOf(b[i+1])) { 
        System.out.println("Acsending"); 
    }
    else { // When condition is false 
            System.out.println("Mixed"); 
        }
    }

Но когда мой ввод 1 2 3 4 5 6, вывод: Ascending Ascending Ascending Ascending Ascending А когда мой ввод 1 4 2 5 2, вывод Ascending Mixed Ascending Mixed Как сделать Я печатаю код только в том случае, если ввод является смешанным или восходящим?

1 Ответ

0 голосов
/ 09 февраля 2020

парень, который отвечает передо мной (Эллиотт Фриш), - PRO. Я понятия не имею, что делает эта линия и что они делают.

Arrays.stream(input.split("\\s+")).mapToInt(Integer::parseInt).toArray();

Я сам новичок, вот как я это сделал это

    public static void main(String[] args) 
    {
    Scanner sc =new Scanner(System.in);
    System.out.println("Type in your order(ex.5 7 4 6 8 3 9 2 0 1 - SPACES REQUIRED): ");
    String input=sc.nextLine();
    String[] b=input.split(" "); 

    sc.close(); //Always Close Scanner after user  :)
    boolean isMixed = false; // Flag

    for(int i=0; i < input.length()/2; i++) //input.length() is equal to number + Spaces we don't want spaces
    {
        //Integer.parseInt(b[i]) converting string to Integer
        if(Integer.parseInt(b[i]) < Integer.parseInt(b[i+1]))
        {
            isMixed = false; 
        } 
        else 
        {
            isMixed = true;
        }

    }

    if(isMixed)
    {
         System.out.println("Mixed"); 
    } else
    {
        System.out.println("Ascending"); 
    }

}
...