哈囉大家好,
我真心不知道自己錯在哪裡
我寫的可以通過第一個測試
但第二個又掛掉
糾結了幾天 沒辦法來向大家求教
感謝各位高手!
Write a program that reads two positive integers a and b on separate lines.
If a is divisible by b, print the message "divisible". Otherwise, print the
message "not divisible".
我的code:
a=int(input()[0])
b=int(input()[-1])
a>0
b>0
if a%b==0:
print("divisible")
else:
print("not divisible")
我的感覺是沒什麼問題吧
但通過了第一個測試
第二個就跟我說答案錯誤
請問我是否忽略了什麼細節呢?
大家端午節快樂!