🌈write in front🌈
🧸大家好,我是Aileen🧸.希望你看完之后,能对你有所帮助,不足请指正!共同学习交流.
🆔本文由Aileen_0v0🧸 原创 CSDN首发🐒 如需转载还请通知⚠️
📝个人主页:Aileen_0v0🧸—CSDN博客
🎁欢迎各位→点赞👍 + 收藏⭐️ + 留言📝
📣系列专栏:Aileen_0v0🧸的PYTHON学习系列专栏——CSDN博客
🗼我的格言:"没有罗马,那就自己创造罗马~"
目录
(1)钞票和硬币
(2)天数转换
(3)找 a,b,c 三个数中最大的数
(4)判断闰年
(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 %= 200print("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 语句的坑位