[solved] – Question 98722
Write a program that creates an array called temperatures and then add five temperatures input from the keyboard.
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]
Expert Answer
OR

