Commit 361734d6 by BellCodeEditor

auto save

parent 07ef43ed
Showing with 109 additions and 0 deletions
# sum=0
# y=0
# a=[1,3,5,7]
# for i in a:
# for j in a:
# for k in a:
# if i!=j and i!=k and j!=k:
# u=i*100+j*10+k
# print(u)
# y=u+y
# sum=sum+1
# print(y)
# print(sum)
# import turtle
# turtle.screensize(0,0)
# for i in range(12):
# turtle.left(120)
# for i in range(2):
# turtle.pencolor("black")
# turtle.fillcolor("yellow")
# turtle.begin_fill()
# turtle.forward(80)
# turtle.right(60)
# turtle.forward(80)
# turtle.right(120)
# turtle.end_fill()
# turtle.pencolor("red")
# turtle.right(120)
# turtle.circle(-120,30)
# hideturtle()
# turtle.done()
# j = input('请输入字符串:')
# a=0
# b=0
# c=0
# d=0
# for i in j:
# if i.isalpha():
# a+=1
# elif i.isnumeric():
# b+=1
# elif i.isspace():
# c+=1
# else:
# d+=1
# print(a)
# print(b)
# print(c)
# print(d)
# a=input("输入")
# print(a[::-1])
# a=input()
# print(len(a))
# M=int(input("输入"))
# if M%2==0 :
# print(0)
# else:
# print(1)
N=int(input("输入"))
y=0
for j in range(0,N+1):
for k in range(0,N+1):
for b in range(0,N):
if j!=0 and j!=k and j!=b and k!=b:
u=j*100+k*10+b
if u%2!=0:
print(u)
++ "b/yyds\343\200\202py"
++ "b/yy\343\200\202"
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