Computer Science, asked by Sankharup, 5 days ago

write an algorithm and draw its flowchart to find the smaller between two numbers using input and if command


PLZ ANSWER THIS QUESTION CORRECTLY TO BE MARKED AS BRAINLIEST. PLZ ANSWER THIS CORRECTLY BECAUSE I AM BEING GRADED ON THIS​

Answers

Answered by julieviamparo99
1

Answer:

process or set of rules to be followed in calculations or other problem-solving operations, especially by a computer.

Explanation:

and i thank you

Answered by kiranbhanot639
0

Answer:

int[] numbers = {8, 3, 7, 9, 1, 2, 4};

System.out.println(Arrays.toString(numbers));

Arrays.sort(numbers);

System.out.println(Arrays.toString(numbers));

[8, 3, 7, 9, 1, 2, 4]

[1, 2, 3, 4, 7, 8, 9]

ArrayList<Integer> numbers = new ArrayList<>();

numbers.add(8);

numbers.add(3);

numbers.add(7);

System.out.println(numbers);

Collections.sort(numbers);

System.out.println(numbers);

[8, 3, 7]

[3, 7, 8]

thanks

Similar questions