have 3 threshold values: 90, 80, 70; need to derive a function which determines if inputs are valid. the function takes 3 int inputs: a, b, c, and returns a Boolean true/false. the function should test that 100>a>b>c>0, again returning true/false. does my code meet the requirements.