📜  python代码示例中的fizzbuzz程序

📅  最后修改于: 2022-03-11 14:46:29.475000             🧑  作者: Mango

代码示例6
inputValue = int(input("Enter a Number: "))

if inputValue % 3 == 0 and inputValue % 5 == 0 :
    print("fizzbuzz")
elif inputValue % 3 == 0 :
    print("fizz")
elif inputValue % 5 == 0 :
    print("buzz")
else:
    print(inputValue)