某實驗室研究的成果會被加密封存,一項實驗會以其最終結果被儲存起來,實驗的結果分為:
'positive result'(肯定), 'negative result'(否定), 'experiment failed'(失敗), 或'experiment not completed'(未完成)
實驗的成果被加密成一串數字 S,其格式為:
positive result(肯定的) S = 1 or S = 4 or S = 78
negative result(否定的) S = S35
experiment failed(失敗的) S = 9S4
experiment not completed(未完成的) S = 190S
(例如實驗結果為 S35 表示若把 35 加在一串數字 S 的右邊,則整串數字表示實驗結果為否定的(negative result))
你必須寫程式解密一串數字來判讀實驗的結果。
Input
第一列會給定一整數n,表示有幾組測試資料,每組測試資料為一列數字字串。Output
對應一組數字,你必須輸出下列結果之一(每個結果一列):+ 表示 positive result (肯定的)- 表示 negative result (否定的)* 表示 failed experiment (失敗的)? 表示 not completed experiment (未完成的)
為了避免無法解析出答案,請輸出第一個比對到的結果。
Sample Input
4
78
7835
19078
944
Sample Output
+
-
?
*
原文出處
沒有留言:
張貼留言