Write a program to compute a score for a integer number.
If the input is zero or negative the score is -100.
Otherwise we start with 0. If the number is a multiple of 3,
add 3 to the score. If the number is a multiple of 5,
add 5 to the score. If the number is between 100 and 200 (inclusive),
add 50 to the score, else subtract 50 from the score. Now print the score.
我无法理解题意
一直写不过QQ