Ask Question
14 November, 04:50

Due to the wildfires in Australia, the Red Cross has asked for assistance in determining how many trees were destroyed per hectare. Australia has a tree density of 456 trees per acre. A hectare is equal to 2.47 acres Write the algorithm that determines the conversion from acres to hectares then gets the user's input on how many hectares were destroyed on a given day. Then print the total number of trees destroyed by fires based on the information entered by the user and the conversion calculation.

+5
Answers (1)
  1. 14 November, 08:07
    0
    1. trees_destroyed_per_hectare = 456/2.47

    2. input (no_of_hectares)

    3. no_of_trees_destroyed = no_of_hectares * trees_destroyed_per_hectare

    4. print (no_of_trees_destroyed)

    Explanation:

    1. trees_destroyed_per_hectare = 456/2.47 / /conversion of tress destroyed per acres to hectare

    2. input (no_of_hectares) / / get input from user in hectares that how many hectares are destroyed

    3. no_of_trees_destroyed = no_of_hectares * trees_destroyed_per_hectare / / total number of trees destroyed by fire on given day and given area

    4. print (no_of_trees_destroyed)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Due to the wildfires in Australia, the Red Cross has asked for assistance in determining how many trees were destroyed per hectare. ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers