(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 语句的坑位