Just so you know alot of the programmers don't respond to the ASAP. They are professionals who give of their time to donate some knowledge to the community, not to fix your hw.
Just getting that out of the way so you can have a better experience here.
what exactly are you not understanding,
i need some idea of where you are and what code you have to get you there,
your first one is pretty much just creating a scanner object
use the format
CODE
Scanner (name of object) = new Scanner(System.in);
then from that you use the method nextInt 3 times, and find the min and max of what you found.
since this is real simple, you can probably just use if statements.
so ,
take the first number a user inputs and set it to both your minimum and maximum value.
then , take the next number, and if it is greater than your first number, reset your max value, else if it is less than your first number replace the minimum value
then take your third number and if it is greater than your max value, replace the max value, and if it is less than your min value replace your min value.
then print max and min.