🌈 搜索
📅  最后修改于: 2022-03-11 14:45:39.322000             🧑  作者: Mango
def isMultipleof5(n): while ( n > 0 ): n = n - 5 if ( n == 0 ): return 1 return 0