我是芭芭拉的狗
我是芭芭拉的狗
全部文章
分类
归档
标签
去牛客网
登录
/
注册
我是芭芭拉的狗的博客
全部文章
(共44篇)
题解 | 健康评估
a,b=map(float,input().split()) BMI=a/(b**2) if 18.5 <= BMI <= 23.9: print('Normal') else: print('Abnormal')
2025-11-26
1
8
题解 | 判断字母
n=input().lower() if 'a'<=n<='z': print('YES') else: print('NO')
2025-11-23
1
14
题解 | 判断闰年
n=int(input()) if n%400==0: print('yes') elif n%4==0 and n%100!=0: print('yes') else: print('no')
2025-11-23
1
13
题解 | 牛牛的判断题
x,l,r=map(int,input().split()) if x<l or x>r: print('false') else: print('true')
2025-11-23
1
12
题解 | 判断整数奇偶性
while True: try: n=int(input()) if n%2==0: print('Even') else: print('Odd') except EOFError: ...
2025-11-23
1
16
题解 | 及格分数
n=int(input()) if n>=60: print('Pass') else: print('Fail')
2025-11-23
1
12
题解 | 你是天才吗?
n=int(input()) if n>=140: print('Genius')
2025-11-23
1
13
题解 | kiki算数
a,b=map(int,input().split()) c=(a+b)%100 print(c)
2025-11-23
1
12
题解 | (a+b-c)*d的计算问题
a,b,c,d=map(int,input().split()) e=(a+b-c)*d print(e)
2025-11-23
1
13
题解 | 小乐乐与欧几里得
import math n,m=map(int,input().split()) yue=math.gcd(n,m) bei=n*m//yue print(yue+bei)
2025-11-23
1
10
首页
上一页
1
2
3
4
5
下一页
末页