LI005
LI005
全部文章
分类
归档
标签
去牛客网
登录
/
注册
LI005的博客
全部文章
(共18篇)
题解 | 计算带余除法
a , b = map(int, input().split()) print(f"{a // b} {a % b}")
2025-07-13
0
15
题解 | 疫情死亡率
c , d = map(int, input().split()) print(f"{d / c * 100:.3f}%")
2025-07-13
0
16
题解 | 牛牛学加法
a, b = map(int, (input().split())) print (a + b)
2025-07-13
0
17
题解 | 复读机
a = input() b = input() c = float(input()) d = input() e = input() print(a) print(b) print(f"{c:.1f}") print(d) print(e)
2025-07-13
0
16
题解 | 牛牛学说话之-字符串
print (input())
2025-07-13
0
7
题解 | 牛牛学说话之-浮点数
print(f"{float(input()):.3f}")
2025-07-13
0
15
题解 | 牛牛学说话之-整数
print(int(input()))
2025-07-13
0
13
题解 | Hello Nowcoder
print("Hello Nowcoder!")
2025-07-13
0
17
首页
上一页
1
2
下一页
末页