You don't need these
if (inputPin 1 == low)
{
jumpBack to main loop;
}
If it fails the High condition, the sketch will just continue & read the next sketch.
Also, you need to read the pin:
if (digitalRead(input1pin) == LOW) { ...}
if (digitalRead(input2pin) == LOW) { ...}
if (digitalRead(input3pin) == LOW) { ...}
if (digitalRead(input4pin) == LOW) { ...}
if (digitalRead(input5pin) == LOW) { ...}
if (digitalRead(input6pin) == LOW) { ...}
use the internal pullups, and have your switch ground the pin to make the condition active.