Commit cce1ea79 by BellCodeEditor

auto save

parent 31d12593
Showing with 0 additions and 14 deletions
...@@ -6,16 +6,3 @@ for i in range(1,10): ...@@ -6,16 +6,3 @@ for i in range(1,10):
print(j,'*',i,'=',(j*i),end=" ") print(j,'*',i,'=',(j*i),end=" ")
print print
while True:
n=int(input("请输入一个数: "))
bji=1
if n<2:
bji=0
print("不是合数也不是质数")
for i in range(2,n):
if n%i==0:
bji=0
print("是合数")
break
if bji==1:
print("是质数")
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment