大方的杰克希望被offer砸中
大方的杰克希望被offer砸中
全部文章
分类
归档
标签
去牛客网
登录
/
注册
大方的杰克希望被offer砸中的博客
全部文章
(共40篇)
题解 | (a+b-c)*d的计算问题
import sys a,b,c,d=map(int,input().split()) e = (a + b - c) * d print(e)
2025-12-03
0
8
题解 | TD
a,b=map(int,input().split()) c = a / b print(f'{c:.12f}')
2025-12-02
1
8
题解 | 浮点除法
a,b=map(int,input().split()) c = a / b print(f'{c:.3f}')
2025-12-02
0
11
题解 | 【模板】牛牛学取余
a,b=map(int,input().split()) print(a % b)
2025-12-02
0
11
题解 | 【模板】牛牛学除法
a,b=map(int,input().split()) print(a // b)
2025-12-02
0
11
题解 | 你能活多少秒
age = int(input()) second =age * 3.156*10**7 print(int(second))
2025-12-02
0
12
题解 | 牛牛买电影票
import sys x = int(input()) print(100 * x)
2025-12-02
0
10
题解 | 【模板】牛牛学乘法
import sys a,b = map(int,input().split()) c = a * b print(c)
2025-12-02
0
11
题解 | 牛牛的等差数列
import sys a,b = map(int,input().split()) d = b - a # 公差 c = b + d print(f"{c}")
2025-12-02
0
13
题解 | 牛牛的空格分隔
import sys n1 = str(input()) n2 = int(input()) n3 = float(input()) print(f'{n1} {n2} {n3:.6f}')
2025-12-02
0
11
首页
上一页
1
2
3
4
下一页
末页