9.2 Code practice Edhesive
Write a program that creates an array called temperatures and then add five temperatures input from the keyboard. Then, print the array.
Sample Run
Enter a temperature: 45
Enter a temperature: 67
Enter a temperature: 89
Enter a temperature: 47
Enter a temperature: 89
[45, 67, 89, 47, 89]