"Hello, Amigo!"

undefined
10
Task
Java Core, level 8, lesson 3
Locked
Maximum byte
Enter a file name from the console. Find the maximum byte in the file. Display it on the screen. Close the IO stream.
undefined
5
Task
Java Core, level 8, lesson 3
Locked
Minimum byte
Enter a file name from the console. Find the minimum byte in the file. Display it on the screen. Close the IO stream.
undefined
20
Task
Java Core, level 8, lesson 3
Locked
Most frequent bytes
Enter a file name from the console. Find the byte or bytes with the maximum number of repetitions. Display them on the screen, separated by spaces. Close the IO stream.
undefined
10
Task
Java Core, level 8, lesson 3
Locked
Rarest bytes
Enter a file name from the console. Find the byte or bytes with the minimum number of repetitions. Display them on the screen, separated by spaces. Close the IO stream.
undefined
10
Task
Java Core, level 8, lesson 3
Locked
Sorting bytes
Enter a file name from the console. Read all the bytes from the file. Ignoring repetitions, sort them by byte-code in ascending order. Display the result on the screen. Close the IO stream. Example of bytes in the input file: 44 83 44 Example output: 44 83