ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Discussion of Problem 2066. Simple Expression

ПОМАГИТЕ!ВСЕ ПРАВИЛЬНО НО НЕПРАВИЛЬНО!!!!!!
Posted by Yarik0514 15 Dec 2019 12:49
import java.util.Arrays;
import java.util.Scanner;

public class ppppp {
    public static void main(String[] args) {

            Scanner in = new Scanner(System.in);
            int n = in.nextInt();
            int k = in.nextInt();
            int g = in.nextInt();

            if (0 <= n && n  <= k && k <= g && g <= 100){
            int[] mas = {n, k, g};
            boolean isSorted = false;
            int buf;
            while (!isSorted) {
                {
                    isSorted = true;
                    for (int i = 0; i < mas.length - 1; i++) {
                        if (mas[i] > mas[i + 1]) {
                            isSorted = false;

                            buf = mas[i];
                            mas[i] = mas[i + 1];
                            mas[i + 1] = buf;
                        }
                    }
                }

            }


            int da = mas[0] - mas[1] * mas[2];
            System.out.println(da);
        }
    }
}
Re: ПОМАГИТЕ!ВСЕ ПРАВИЛЬНО НО НЕПРАВИЛЬНО!!!!!!
Posted by Yarik0514 15 Dec 2019 12:53
Да тут есть ошибка!В коде есть ошибка нужно посмотреть код заново!И выявить ошибку!
ОТВЕТ ДЛЯ ЭТОЙ ЗАДАЧИ a-b-c or a-b*c это нужно вписать в код и все получится!