You can create a simple script to check if a result is inside the range of 500-600 as follows:
main.m340 chars10 lines
This script prompts the user to enter the test result, and then checks whether it is inside the range of 500-600 using an if statement. The logical and operator is used to check if the test result is both greater than or equal to 500 and less than or equal to 600. If the test result is inside the range, the script prints a message saying so; if it is outside the range, the script prints a different message.
gistlibby LogSnag