Looks like it's due today and you just now post it?
Pseudo code wise:
Quote
Ask for 2 integer inputs
Store inputs in 2 variables
Function IsPrime
(Google how to apply this in code. It's everywhere)
Function reverse
You can either read the integer value by value into an array or string. Or, you can use mod/10 to extract the rightmost value of the integer (probably just go with array/string if you're new and haven't learned mods)
Function biggestDigit
Take the array you used for reverse() and store the first value in a variable.
Read in the next value
If next value > current value
store next value in the variable
repeat until you've gone through the entire array.
Honestly, you can literally google ALL of these functions and copy and pasta from google. :/