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: