烛少
烛少
全部文章
题解
归档
标签
去牛客网
登录
/
注册
烛少的博客
全部文章
/ 题解
(共2篇)
题解 | #质数因子#
while True: try: num=int(input()) if num in [1,2]: print(num) # break for i in range(2,int(num**0....
Python3
2022-04-26
0
436
题解 | #成绩输入输出#
通用写法 # def score_split(): # a,b,c=map(int,input().split(" ")) # print("score1=%d,score2=%d,score3=%d"%(a,b,c)) # score_split() def score_spli...
Python3
2022-03-31
0
421