牛客网刷题-(5)

简介: 牛客网刷题-(5)

(1)钞票和硬币

#钞票和硬币
#有些小数电脑他用二进制表示不了,只是一种近似值,所以我们可以通过同时扩大100倍来提高它的精度
N = float(input())
N = N * 100
print("NOTAS:")
print("%d nota(s) de R$ 100.00"%(N//10000))
N = N %10000
print("%d nota(s) de R$ 50.00"%(N//5000))
N = N %5000
print("%d nota(s) de R$ 20.00"%(N//2000))
N = N %2000
print("%d nota(s) de R$ 10.00"%(N//1000))
N %= 1000
print("%d nota(s) de R$ 5.00"%(N//500))
N %= 500
print("%d nota(s) de R$ 2.00"%(N//200))
N %= 200
print("MOEDAS:")
print("%d moeda(s) de R$ 1.00"%(N//100))
N %= 100
print("%d moeda(s) de R$ 0.50"%(N//50))
N %= 50
print("%d moeda(s) de R$ 0.25"%(N//25))
N %= 25
print("%d moeda(s) de R$ 0.10"%(N//10))
N %= 10
print("%d moeda(s) de R$ 0.05"%(N//5))
N %= 5
print("%d moeda(s) de R$ 0.01"%(N//1))

(2)天数转换

#天数转换
N = int(input())
#年
Y = N //365
print("%d ano(s)"%Y)
#月
M = (N % 365)//30
print("%d mes(es)"%M)
#日
D = (N % 365)%30
print("%d dia(s)"%D)

(3)找 a,b,c 三个数中最大的数

方法1:

#找 a,b,c三个数中最大的那个数
a,b,c = map(int,input().split())
if a > b:
    if a > c:
        print(a)
    else:
        print(c)
else:
    if b > c:
        print(b)
    else:
        print(c)

方法2: 公式法,👉🔗http://t.csdnimg.cn/xkzfB

(4)判断闰年

#判断闰年
Y = int(input())
if Y % 100 == 0:
    if Y % 400 == 0:
        print("yes")
    else:
        print("no")
else:
    if Y % 4 == 0:
        print("yes")
    else:
        print("no")

✨tips:

shift + tap 代码左移

tap 代码右移

pass语句可用于占if 语句的坑位

目录
相关文章
|
6月前
leetcode20刷题打卡
leetcode20刷题打卡
31 0
|
6月前
leetcode24刷题打卡
leetcode24刷题打卡
25 0
|
6月前
|
算法
leetcode1刷题打卡
leetcode1刷题打卡
41 0
|
6月前
|
算法
刷题之Leetcode704题(超级详细)
刷题之Leetcode704题(超级详细)
24 0
|
6月前
刷题之Leetcode27题(超级详细)
刷题之Leetcode27题(超级详细)
27 0
|
6月前
刷题之Leetcode283题(超级详细)
刷题之Leetcode283题(超级详细)
25 0
|
6月前
刷题之Leetcode54题(超级详细)
刷题之Leetcode54题(超级详细)
30 0
|
6月前
leetcode225刷题打卡
leetcode225刷题打卡
39 0
|
测试技术 索引
leetcode刷题(2)
各位朋友们,又是新的一天,不知道大家过得怎样?今天是我leedcode刷题系列的第二篇,那么废话不多说,直接进入我们今天的主题。
|
算法 API C++