I apologize, I didn't think the < signs would have messed up with the HTML...
I'm not sure I have 100% understood your question, but it seems you should use those "less than or equal to", "greater than or equal to" things:
if (answer >= 1 && answer <= 5)
{
put "blah-blah."
}
I don't know Turing so I wrote this in AS3 syntax, tell me if you have trouble understanding it. However, this is what I think it should look like in the language you're using:
if answer >= 1 && answer <= 5
then
put "blah-blah."
end if