If input >= 32 And input < 64 Then
output = 126 - input
ElseIf input >= 64 And input < 96 Then
output = 126 + 64 - input
ElseIf input >= 96 And input <= 126 Then
output = 126 + 32 - input
End If
It looks like it has something to do with Modulo 32 of input? Output is always an integer (no decimals).
If you find the solution, can you let me know how you go about solving this question?
factor -48x^2 + 208x - 160. – Caleb Stanford May 14 '14 at 06:34