cfn
cfn
全部文章
分类
归档
标签
去牛客网
登录
/
注册
cfn的博客
全部文章
(共137篇)
题解 | #牛牛的对齐#
n=input().split() print("{} {} {}".format(n[0],n[1],n[2]))
2022-12-16
0
175
题解 | #牛牛的空格分隔#
list=[] while True: try: list.append(input()) if len(list)>=3: break except: break print(list[0],list[1...
2022-12-12
0
240
题解 | #十六进制转十进制#
dic={'A':10,'B':11,'C':12,'D':13,'E':14,'F':15} n="ABCDEF" m=0 l=len(n) for i in n: m=m+dic[i]*16**(l-1) l=l-1 print("%15d"%m)
2022-12-11
0
197
题解 | #大小写转换#
while True: try: n=input() print(n.lower()) except: break
2022-12-11
0
183
题解 | #按照格式输入并交换输出#
n=input().split(",") print("a="+n[1][2:]+",""b="+n[0][2:])
2022-12-11
0
183
题解 | #出生日期输入输出#
n=str(input()) a=n[:4] b=n[4:6] c=n[6:] print("year="+a+"\n""month="+b+"\n""date="+c)
2022-12-06
0
198
题解 | #学生基本信息输入输出#
n=input().split(";") id=n[0] score=n[1] num=score.split(',') score1=format(float(num[0])+0.0001,".2f") score2=format(float(num[1])+0.0001,".2f") score...
2022-12-06
0
219
题解 | #成绩输入输出#
a,b,c=input().split() print("score1="+a+",""score2="+b+",""score3="+c)
2022-12-06
0
190
题解 | #实现四舍五入#
n=float(input()) print("{:.0f}".format(n))
2022-12-06
0
174
题解 | #字符转ASCII码#
n=input() print(ord(n))
2022-12-06
0
151
首页
上一页
5
6
7
8
9
10
11
12
13
14
下一页
末页