Answer:
The solution code is written in Python:
Explanation:
First, create a function, largeFactor(), that take one parameter, num (Line 1).
Since the input number must be bigger than 1, we create a if condition to ensure the num is bigger than 1 (Line 2).
To return the largest divisible integer, we can create a for loop that iterate through the number from num - 1 till 0 (Line 3). This will enable us to identify the largest integer which is less than num but is a factor of num and return it as output (Line 4-5).