Answer :
To write a program that accepts six Fahrenheit temperatures and converts them to their Celsius equivalents, you can use a for loop. Here's an example of how you can implement this program in Python:
```python
# Initialize a list to store the Celsius equivalents
celsius_temperatures = []
# Iterate over the range of six temperatures using a for loop
for i in range(6):
# Prompt the user to enter a temperature in Fahrenheit
fahrenheit = float(input("Enter degree in Fahrenheit: "))
# Convert the Fahrenheit temperature to Celsius
celsius = (5.0/9.0) * (fahrenheit - 32)
# Append the Celsius equivalent to the list
celsius_temperatures.append(celsius)
# Print the Celsius equivalent
print("Equivalent degree in Celsius: {:.2f}".format(celsius))
# Print the list of Celsius equivalents
print("Celsius equivalents:", celsius_temperatures)
```
In this program, we initialize an empty list called `celsius_temperatures` to store the Celsius equivalents. We then use a for loop to iterate six times, prompting the user to enter a temperature in Fahrenheit. The input is converted to a floating-point number using the `float()` function.
Inside the loop, we calculate the Celsius equivalent by applying the formula `(5.0/9.0) * (fahrenheit - 32)`. The result is then appended to the `celsius_temperatures` list. We use the `format()` function to print the Celsius equivalent with two decimal places.
Finally, outside the loop, we print the entire list of Celsius equivalents.
Here's an example interaction with the program:
```
Enter degree in Fahrenheit: 95
Equivalent degree in Celsius: 35.00
Enter degree in Fahrenheit: 100
Equivalent degree in Celsius: 37.78
Enter degree in Fahrenheit: 80
Equivalent degree in Celsius: 26.67
Enter degree in Fahrenheit: 24
Equivalent degree in Celsius: -4.44
Enter degree in Fahrenheit: 75
Equivalent degree in Celsius: 23.89
Enter degree in Fahrenheit: 97
Equivalent degree in Celsius: 36.11
Celsius equivalents: [35.0, 37.78, 26.67, -4.44, 23.89, 36.11]
```
This program uses a for loop to handle the repetitive task of accepting six Fahrenheit temperatures and converting them to Celsius equivalents. It demonstrates the use of input, calculations, and list manipulation to achieve the desired result.
To know more about Fahrenheit:
brainly.com/question/516840
#SPJ11