assuming int variables start and stop have been declared and initialized, write a snippet of code (not a function) that prints the numbers from start to stop, inclusive, one on each line. however, you should skip a value if it is odd. you can check whether a value is odd by using the remainder operator: value % 2 != 0. so if start and stop were 4 and 8, your method would print: 4 6 8 note that stop may be less than start, in which case you should not print anything. if start and stop are equal, you should print that value, as long as it is not odd.