---- See the following code: int myfunction( int myinput ) { if ( myinput > 0 ) return 1; else if ( myinput == 0 ) return 0; else return -1; } * 1 * 2 * 3 * Up to 3