1
以下のプログラムを実行すると、すべての数値が0.0として出力されます。どのようにカオス的な行動を説明するためにこれを修正することができますか?カオスの動作を示すPythonプログラムの作成方法
# A simple program illustrating chaotic behaviour
def main():
print ("This program illustrates a chaotic function")
x = int (float(input("Enter a number between 0 and 1: ")))
for i in range(10):
x = 3.9 * x * (1-x)
print (x)
main()
Pythonの 'int()'は数字のため、0から1までの数字はすべて0になります。 – wrkyle