牛客网刷题-(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 语句的坑位

目录
相关文章
|
7月前
刷题之Leetcode283题(超级详细)
刷题之Leetcode283题(超级详细)
30 0
|
7月前
|
存储 容器
leetcode349刷题打卡
leetcode349刷题打卡
40 0
|
7月前
leetcode203刷题打卡
leetcode203刷题打卡
470 0
|
Java 测试技术 C语言
leetcode刷题(3)
各位朋友们大家好,今天是我leedcode刷题系列的第三篇,废话不多说,直接进入主题。