在指定區間求能同時能被3和7整除的數

在20-100之間求能同時能被3和7整除的數 for i in range(20,101): if i%3==0 and i%7==0: print(i)
相關文章
相關標籤/搜索